@extends('layouts.app') @section('title', 'Book Catalog | Library') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')
{{ auth()->user()->school?->name ?? 'Institution Axis' }}
@endsection @section('breadcrumb') Home / Library / Books @endsection @section('navbar-right') @endsection @section('content')| # | Title | Author | Category | ISBN | Total | Available | Location | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $book->title }} | {{ $book->author }} | @if($book->category) {{ $book->category }} @else — @endif | {{ $book->isbn ?? '—' }} | {{ $book->total_copies }} | {{ $book->available_copies }} | {{ $book->location ?? '—' }} | |
| No books found. Add the first one. | ||||||||