@extends('library.admin.layouts.admin_design') @section('title') View Damaged Books - School Library @endsection @section('content')

Damaged Book list

Book That has been Damaged

@foreach($totalDamaged as $cat) @endforeach
# Book Title Isbn Status
{{$loop->index + 1}} {{$cat->book->title}} {{$cat->isbn}} {{$cat->status}}
@endsection @section('scripts') @endsection