@extends('reports.layouts.excel.main') @section('content')
@foreach ($data['roomSaleData'] as $item) @endforeach
SL# GUEST CONTACT RES RES PERIOD ROOMS PRICE DISCOUNT NET PRICE COLLECTION REFUND ADJUSTMENT 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->payment)}} {{bdt_format($item->refund)}} {{bdt_format($item->adjustment)}} {{bdt_format($item->price_net - (($item->payment - $item->refund) + $item->adjustment))}}
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_adjustment'])}} {{bdt_format($data['total_balance'])}}
@endsection