@extends('library.admin.layouts.admin_design') @section('title') Issue Book - School Library @endsection @section('content')
{{$book->title}}
Author: {{$book->author->name}}
{{--
--}}
Description:

{!! $book->description !!}

Card image cap
{{count($istatus)}}
Total Available
{{count($iissued)}}
Total Issued
{{count($idamaged)}}
Total Damaged
{{count($ilost)}}
Total Lost

Book ISBN Details

{{-- --}} @foreach($isbn as $det) {{----}} @endforeach
# Isbn Status ActionSubtotal
{{$loop->index+1}} {{$det->isbn}} status == 'issued')"color:Blue;" @elseif($det->status == 'lost')"color:brown;" @elseif($det->status == 'damaged')"color:red;" @else "color:green;" @endif> {{ucwords($det->status)}} --}} {{--
@endsection