@extends('layouts.app') @section('title', 'Books') @section('content')

Books

All Books {{ $books->count() }}
Add Book
@forelse($books as $book) @empty @endforelse
ID Title Author Publisher Category Cover Image Actions
{{ $book->id }} {{ $book->title }} {{ $book->author }} {{ $book->publisher }} {{ $book->category->name }} @if(file_exists(public_path($book->cover_image))) Cover Image @else Missing @endif
@if(file_exists(public_path($book->file))) @else @endif
@csrf @method('DELETE')
No books found
@push('styles') @endpush @endsection