@extends(\Auth::user()->role != 10 ? 'layout' : 'layoutfrontdesk') @section('title', 'Guest Room Change List') @section('css') @endsection @section('content')
{{-- Room Production Report --}}

Date:

@if (count($change_lists) > 0) @foreach($change_lists as $key => $list) @endforeach @else @endif
ChangeDate Arrival Depart Time RmNo MoveTo Reason GuestName,Address Reservation Name ID
{{ $list->change_date ? dateFormat($list->change_date, 'd-m-Y') : '-'}} {{ $list->arrival ? dateFormat($list->arrival, 'd-m-Y') : '-'}} {{ $list->depart ? dateFormat($list->depart, 'd-m-Y') : '-' }} {{ $list->change_date ? dateFormat($list->change_date, 'H:i') : '-'}} {{ $list->from_rmno }} {{ $list->to_rmno }} {{ $list->reason }} {{ $list->guestname_address }} {{ $list->reservation_name }} {{ @$list->user->username ?? "" }}

No Data

@endsection @section('js') @endsection