@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Content Tools: Links

{!! Form::open(['url' => route('sysadmin_tools_content_links'), 'class' => '']) !!}
{!! Form::close() !!}
@foreach($bookings as $booking) @endforeach
ID Nachname Organisation Service Gesamt Check Storno
{{ $booking->id }} {{ $booking->customer->fullName() }} {{ $booking->price }} {{ $booking->getServiceTotal() }} {{ $booking->price_total }} @if($booking->getPriceTotalRaw() != ($booking->getPriceRaw() + $booking->getServiceTotal(true))) {{ ($booking->getPriceRaw() + $booking->getServiceTotal(true)) }} @endif @if($booking->isCanceled()) {{ $booking->price_canceled }} @endif
@endsection