@extends('backEnd.master') @section('title') @lang('library.parent_book_issue') @endsection @section('mainContent')

@lang('library.all_issued_Book_List')

{{-- --}} @foreach($issueBooks as $value) @endforeach
@lang('library.book_title') @lang('library.book_no') @lang('library.isbn_no')Member Name@lang('library.author') @lang('common.subject') @lang('library.issue_date') @lang('library.return_date') @lang('common.status')
{{$value->books !=""?$value->books->book_title:""}} {{$value->books !=""?$value->books->book_number:""}} {{$value->books !=""?$value->books->isbn_no:""}} {{$value->books !=""?$value->books->author_name:""}} {{$value->subject_name !=""?$value->subject_name:""}} {{$value->given_date != ""? dateConvert($value->given_date):''}} {{$value->due_date != ""? dateConvert($value->due_date):''}} @php $now=new DateTime($value->given_date); $end=new DateTime($value->due_date); @endphp @if($value->issue_status == 'I') @if($end<$now) @else @endif @else @endif
@endsection @include('backEnd.partials.data_table_js')