@extends('admin.layout.master') @section('custom_style') @endsection @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 }} | ||||||
| Sl | Date | Amount |
|---|---|---|
| {{ $key+1 }} | {{ date('d-m-Y', strtotime($d->date)) }} | {{ $d->amount }} |
| Total | {{ $info->fd_allotment_installments->sum('amount') }} | |