@extends(\Auth::user()->role != 10 ? 'layout' : 'layoutfrontdesk') @section('title', 'Room Statistics - Daily Revenue Report') @section('css') @endsection @section('content')
@csrf
@if( isset($room_stats) && count($room_stats)>0 ) @php $no = 1; @endphp @foreach($room_stats as $room_stat) @php $no++; @endphp @endforeach @else @endif
# Description Amount
{{ $no }} {{ @$room_stat['description'].' - '.@$room_stat['statistic_id'] }} @if (@$room_stat['readonly']) @endif
No Data
@if( count($room_stats) > 0 ) @endif
@endsection @section('js') @endsection