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

Issued Book list

List of Book Issued

@foreach($issue as $cat) @endforeach
# Role User Id Book Isbn Return Date Actions
{{$loop->index + 1}} {{$cat->role}} @if($cat->role == "teacher") {{$cat->role_id_teacher}} @else {{$cat->role_id_student}} @endif {{$cat->book_isbn}} {{$cat->return_date}} Return @if($cat->count < 3) @endif
@endsection @section('scripts') @endsection