@extends('layouts.app') @section('title', $book->title . ' - Perpustakaan') @section('content')
by {{ $book->author }}
Penerbit
{{ $book->publisher }}
Tahun diterbitkan
{{ $book->year }}
Kategori
{{ $book->category->name }}Stok Buku
{{ $book->available_stock }}/{{ $book->total_copies }} available
Deskripsi Buku
{{ $book->description }}
{{ $borrowing->member->name }}
{{ ucfirst($borrowing->status) }}Borrowed: {{ $borrowing->borrow_date->format('M d, Y') }}
Due: {{ $borrowing->due_date->format('M d, Y') }}
@if($borrowing->return_date)Returned: {{ $borrowing->return_date->format('M d, Y') }}
@endifTak ada histori peminjaman
@endforelse