@extends('layouts.app') @section('content')

All Inventory

@forelse ($books as $book) @empty @endforelse
S.No Book Name Category Author Publisher Quantity Status Barcode Edit Delete
{{ $book->id }} {{ $book->name }} {{ $book->category->name }} {{ $book->auther->name }} {{ $book->publisher->name }} {{ $book->quantity }} @if ($book->status == 'Y') Available @else Issued @endif Generate Barcode Edit
@csrf
No Books Found
{{ $books->links('vendor/pagination/bootstrap-4') }}
@endsection