@extends('reports.layouts.pdf.main') @section('content')

{{ strToUpper($data['title'])}}

DATE: {{ \Carbon\Carbon::parse(now())->format('d/m/Y') }}

@foreach ($data['roomSaleData'] as $item) @endforeach
SL# GUEST CONTACT RES RES PERIOD ROOMS PRICE DISCOUNT NET PRICE COLLECTION REFUND BALANCE
{{$loop->iteration}} {{$item->guest_name_title}} {{$item->guest_name_first}} {{$item->guest_name_last}} {{$item->guest_mobile}} {{$item->code}} {{\Carbon\Carbon::parse($item->date_checkin)->format('d/m/Y')}} - {{\Carbon\Carbon::parse($item->date_checkout)->format('d/m/Y')}} {{$item->room_numbers}}
Total:{{$item->total_rooms}}
{{bdt_format($item->price_gross)}} {{bdt_format($item->discount_amount)}} {{bdt_format($item->price_net)}} {{bdt_format($item->price_net)}} 0.00 {{bdt_format($item->price_net)}}
Total: {{bdt_format($data['total_gross_price'])}} {{bdt_format($data['total_discount'])}} {{bdt_format($data['total_net_price'])}} {{bdt_format($data['total_collection'])}} {{bdt_format($data['total_refund'])}} {{bdt_format($data['total_balance'])}}
@endsection