@extends('layout.base') @section('title', $booking->customer->name) @section('content') Terug naar weekoverzicht

Boeking info @can('edit.booking') Wijzig boeking @endcan

Aankomst {{ $booking->arrival->formatLocalized('%a, %e %b %Y') }} — {{ $booking->arrival->formatLocalized('%H:%M') }}
Vertrek {{ $booking->departure->formatLocalized('%a, %e %b %Y') }}
# gasten {{ $booking->guests }}
Samenstelling {{ $booking->composition }}
Kamer {{ $booking->rooms[0]->name }} @if ($booking->rooms[0]->properties->options['part'] != -1) — kamer {{ $booking->rooms[0]->properties->options['part']+1 }} @endif
Basis prijs € {{ $booking->basePrice }}
Korting {{ $booking->discount }} %
Voorschot € {{ $booking->deposit }}
Te betalen € {{ $booking->remaining }}
Opmerkingen {!! nl2br($booking->comments) !!}
{{-- booker info --}}

Boeker @can('edit.booking') Wijzig boeker @endcan

Naam {{ $booking->customer->name }}
E-mail {{ $booking->customer->email }}
GSM {{ $booking->customer->phone }}
Land {{ $booking->customer->country_str }}
@unless($booking->guests === 1)

Extra gasten @if ($booking->extraGuests->count() < $booking->guests-1) Extra gast toevoegen @endif

@endunless @unless($booking->extraGuests->isEmpty()) @foreach($booking->extraGuests as $guest) @endforeach
{{ $guest->name }} {{-- --}}
@endunless

Extra's Extra toevoegen

@unless($booking->extras->isEmpty()) @foreach($booking->extras as $extra) @endforeach
Aantal Naam Prijs Per  
{!! $extra->icon !!} {{ $extra->pivot->amount }} {{ $extra->name }} € {{ $extra->price }} {{ $extra->per }}
@else

Geen extra's voor deze boeking.

@endunless @can('edit.booking') @endcan @endsection