|
{{ $book->id ?? '' }}
|
{{ $book->code ?? '' }}
|
@if($book->cover_image)
@endif
|
{{ $book->title ?? '' }}
|
@foreach($book->categories as $key => $item)
{{ $item->name }}
@endforeach
|
{{ $book->author->name ?? '' }}
|
{{ $book->publisher->name ?? '' }}
|
{{ $book->year ?? '' }}
|
{{ $book->keywords ?? '' }}
|
{{ App\Models\Book::LANGUAGE_SELECT[$book->language] ?? '' }}
|
{{ $book->pages ?? '' }}
|
{{ $book->version ?? '' }}
|
{{ $book->is_editor_choice ?? '' }}
is_editor_choice ? 'checked' : '' }}>
|
{{ $book->is_hardcopy ?? '' }}
is_hardcopy ? 'checked' : '' }}>
|
{{ $book->is_ebook ?? '' }}
is_ebook ? 'checked' : '' }}>
|
{{ $book->rating ?? '' }}
|
{{ $book->view ?? '' }}
|
{{ App\Models\Book::STATUS_RADIO[$book->status] ?? '' }}
|
{{ $book->file_url ?? '' }}
|
{{ $book->user->name ?? '' }}
|
@can('book_show')
{{ trans('global.view') }}
@endcan
@can('book_edit')
{{ trans('global.edit') }}
@endcan
@can('book_delete')
@endcan
|
@endforeach