@extends('layouts.app') @section('content')

Date Wise Book Issue Report

@csrf
@error('date') @enderror
@if ($books)
@forelse ($books as $book) @empty @endforelse
S.No Student Name Book Name Phone Email Issue Date
{{ $book->id }} {{ $book->student->name }} {{ $book->book->name }} {{ $book->student->phone }} {{ $book->student->email }} {{ $book->issue_date->format('d M, Y') }}
No Record Found!
@endif
@endsection