@extends('admin.layouts.layouts')
@section('title', 'Letter Book Allocation Details')
@section('content')
| Location: |
{{ $allocation->location->name ?? '-' }} |
| Created At: |
{{ $allocation->created_at->format('d-m-Y H:i') }} |
| Created By: |
{{ $allocation->createdBy->name ?? '-' }} |
Allocated Letter Books:
| # |
Letter Book Number |
Status |
Created At |
@foreach($letterBooks as $index => $letterBook)
| {{ $index + 1 }} |
{{ $letterBook->letter_number }} |
@if($letterBook->status == 1)
Active
@else
Inactive
@endif
|
{{ $letterBook->created_at->format('d-m-Y') }} |
@endforeach
@endsection