@extends('adminlte::page') @section('title', 'Books') @section('content_header')
| Title | Author | Category | ISBN | Quantity | Actions |
|---|---|---|---|---|---|
| {{ $book->title }} | {{ $book->author ?? '-' }} | {{ $book->category->name ?? '-' }} | {{ $book->isbn ?? '-' }} | {{ $book->quantity }} | @can('library.edit') Edit @endcan @can('library.delete') @endcan |