@extends('layout.base') @section('title', $booking->customer->name) @section('content') Terug naar weekoverzicht
| 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) !!} |
| Naam | {{ $booking->customer->name }} |
|---|---|
| {{ $booking->customer->email }} | |
| GSM | {{ $booking->customer->phone }} |
| Land | {{ $booking->customer->country_str }} |
| {{ $guest->name }} | {{-- --}} |
| Aantal | Naam | Prijs | Per | ||
|---|---|---|---|---|---|
| {!! $extra->icon !!} | {{ $extra->pivot->amount }} | {{ $extra->name }} | € {{ $extra->price }} | {{ $extra->per }} |
Geen extra's voor deze boeking.
@endunless @can('edit.booking') @endcan @endsection