@extends('layout.base') @section('title', 'Planning - ' . $dates[0]['date']->format('d-m-Y')) @php $planning_table = true; @endphp @section('content')
{{ $note->notes }}
| kamer | @foreach($dates as $date)
{{ $date['day'] }} {{ $date['date_str'] }} |
@endforeach
|
|---|---|---|
| {{ $room->name }} | @for($d=0; $d<7; $d++) @php $date = $dates[$d]; @endphp @if(isset($room->bookings) && ($bookings = $room->hasBooking($date['date'])))
@foreach($bookings as $booking)
@php $b = $booking->first(); @endphp
{!! str_replace(' ', ' ', $b->customer->name) !!}
@endforeach |
@else
@endif @endfor |