@extends('layouts.app') @section('title', 'Active Loans | Library') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')
{{ auth()->user()->school?->name ?? 'Institution Axis' }}
@endsection @section('breadcrumb') Home / Library / Loans @endsection @section('navbar-right') @endsection @section('content')| # | Book | Borrower | Borrowed On | Due Date | Returned On | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $loan->book->title }} | {{ $loan->user->name }} | {{ $loan->borrowed_at->format('d M Y') }} | {{ $loan->due_date->format('d M Y') }} | {{ $loan->returned_at ? $loan->returned_at->format('d M Y') : '—' }} | @if($loan->status === 'returned') Returned @elseif(now()->gt($loan->due_date)) Overdue @else Active @endif | @if($loan->status !== 'returned') @else Done @endif |
| No loan records yet. | |||||||