@extends('layout') @section('content')

Reservierung bearbeiten

{!! Form::model($order,['method' => 'PATCH','route'=>['reservations.update',$order->id]]) !!} user()->withTrashed()->first()?> {{$user->email}}
@if($order->paid)
@else
@endif

{!! Form::text('date',$order->paiddate,['class'=>'form-control', 'id' => 'date']) !!}

@if($order->porto)
@else
@endif

singleseatusers()->orderBy('id', 'desc')->first()->paymentmethod()->first(); ?> Bezahlart:

{!! Form::label('notes', 'Notizen:') !!} {!! Form::text('notes', null, ['class' => ' form-control']) !!}

Tickets:
@foreach($order->singleseatusers()->get() as $ssu) event_concessions_id); ?> @if($ssu->singleSeat->seat->event->reservation->name == "Mit Tischwahl") Reihe {{14-$ssu->singleSeat->x}}, Platz {{$ssu->singleSeat->y}} @else {{$ssu->calcSeatName()}} @endif Kategorie {{$ssu->singleSeat()->first()->category}} @if($currPaymentmethod->id != 5) ZU KULTURKARTENBESTELLUNG UMWANDELN @endif
@endforeach @if(!is_null($order->amountBuffett)) {{$order->amountBuffett}} x Buffett-Karten @endif

{!! Form::submit('Update', ['class' => 'btn btn-primary', 'id' => 'update_reservation_submit']) !!}
{!! Form::close() !!} @endsection @section('scripts') @endsection