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