@extends('layout.admin') @section('template_title') {{ __('Danh sách chương của truyện ' . $article->title) }} @endsection @section('content')
@if ($message = session('success'))

{{ $message }}

@endif
@foreach ($chapters as $chapter) @endforeach
Thứ tự chương Tên chương Lượt xem Ngày tạo Ngày sửa Hành động
{{ $chapter->number_text }} {{ $chapter->title }} {{ $chapter->view_text }} {{ $chapter->created_at_text }} {{ $chapter->updated_at_text }}
{{ __('Chi tiết') }} {{ __('Sửa') }} @csrf @method('DELETE')
{!! $chapters->links() !!}
@endsection