@foreach($reservations as $key=> $row)
|
|
{{ $row->phone }} |
{{ $row->id }} |
{{ $row->room->room_id }} |
{{ $row->date }} |
{{ $row->start_time .' - '.$row->end_time }} |
{{ $row->length_time }} |
{{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} |
|
@endforeach
@if( count( $reservations ) && $reservations->hasPages() )
| {{ $reservations->links() }} |
@endif