@extends('adminlte::page') @section('title', 'Books') @section('content_header')

Books

@stop @section('content')
@can('library.create') Add Book @endcan @foreach($books as $book) @endforeach
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')
@csrf @method('DELETE')
@endcan
@stop