@extends('admin.layout.master') @section('content')
| Sl | Room Type | From | To | T.Night | Room Qty | Rate | Amount |
|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $d->room_type->name ?? '-' }} | {{ date('d-m-Y', strtotime($d->start_date)) }} | {{ date('d-m-Y', strtotime($d->end_date)) }} | {{ $d->total_night }} | {{ $d->qty }} | {{ $d->rate }} | @php $total += $d->qty * $d->total_night * $d->rate; @endphp{{ $d->qty * $d->total_night * $d->rate }} |
| Total | {{ $info->fd_allotment_details->sum('total_night') }} | {{ $info->fd_allotment_details->sum('qty') }} | (VAT {{ $info->tax_type == 2 ? 'Excluding' : 'Including' }}) | {{ $total }} | |||
| Amount Without VAT | {{ $without_vat }} | ||||||
| VAT ({{ $info->get_tax_info->sum('tax_percent') }}%) | {{ $vat_amount }} | ||||||
| G. Total | {{ $without_vat+$vat_amount }} | ||||||
No Release Info Found
@endif