@extends('layout.admin') @section('template_title') {{ __('Danh sách truyện') }} @endsection @section('content')
{{ $message }}
# | Ảnh | Tên truyện | Tác giả | Thể loại | Số chương đã đăng | Mô tả | Lượt xem | Trạng thái hoàn thành | Trạng thái duyệt | Người tạo | Thời gian tạo | Thời gian cập nhật | Hành động |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $article->id }} |
|
{{ $article->title }} | @foreach($article->authors as $author) {{ $author->name }} @endforeach | @foreach($article->genres as $genre) {{ $genre->name }} @endforeach | {{ $article->chapters_text }} | {{ $article->description }} | {{ $article->view_text }} | {{ $article->completed_text }} | {{ $article->status_text }} | {{ $article->user->name }} | {{ $article->created_at_text }} | {{ $article->updated_at_text }} | {{ __('Chi tiết') }} {{ __('Thêm chương') }} {{ __('Sửa') }} @if($currentUser->is_admin) @if($article->status == \App\Enums\ArticleStatus::APPROVED->value) @endif @endif |