@extends('admin.layout.master') @section('content')
| Sl | Code | Agent | Inv Date | {{--Remarks | --}}Gross Amount | Description | Qty | A.Checkin | Doc | Check In | Action | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ ++$key }} | {{ $manageAllotment->code ?? '' }} | {{--{{ $manageAllotment->commission ?? ''}} | --}}{{ $manageAllotment->agent->name_eng ?? '' }} | {{ date('d-m-Y', strtotime($manageAllotment->inv_date)) ?? '' }} | {{--{{ $manageAllotment->remarks ?? ''}} | --}}{{ $manageAllotment->gross_amount ?? '' }} |
@foreach ($manageAllotment->fd_allotment_details as $d)
From {{ date('d-m-Y', strtotime($d->start_date)) }} To
{{ date('d-m-Y', strtotime($d->end_date)) }} - {{ $d->qty }}
Rooms @endforeach |
{{ $manageAllotment->fd_allotment_details->sum('qty') }} | {{ $manageAllotment->get_checkin_info->where('check_in_status', 1)->count() }} | @if ($manageAllotment->doc_name != null) @else - @endif | @if ($manageAllotment->status == 1) Pending @else @endif | {{-- --}} @if (checkAuthPermission('frontdesk.allotment.release')) Release @endif @if ($manageAllotment->status == 1) @if (checkAuthPermission('frontdesk.allotment.approve')) Approve @endif @endif |