@extends('layouts.app') @section('title', 'Return Book') @section('content')
| Book | Borrower | Due Date | Actions |
|---|---|---|---|
| {{ $loan->book->title }} | {{ $loan->student->full_name ?? '—' }} | {{ \Illuminate\Support\Carbon::parse($loan->due_at)->format('d M, Y') }} | |
| No active loans. | |||