@extends('layouts.master') @section('content')
@lang('descriptions.gva.crud')
{!! Form::model($event, ['route' => ['exclusive-events.approval-view', $event->id], 'class' => 'exclusive-events-approval-form approval-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!}
Vorschau Einladung E-Mail:
{!! \App\Services\EventCalendarService::callExclusiveEventAPI("event/".$event->id."/invitation-email") !!}
Vorschau www.haspa-veranstaltungen.de:
{!! \App\Services\EventCalendarService::callExclusiveEventAPI("event/".$event->id."/preview") !!}
@if ($event->approval_request->remark !== "")
Hinweis zur Freigabe:
{{ $event->approval_request->remark }}
@endif
Ergänzende Hinweise (optional)
{!! Form::text('remark', '', ['class' => 'form-control']) !!}
{!! Form::checkbox('approve', 1, null, ['id' => 'approval-state', 'class' => 'hidden']) !!}
Ändern
{!! Form::close() !!}
@endsection @section('back_button') Zurück @endsection