@extends('Layouts/dashboard') @section('submenu') @if ($template == 'event') @include('Plugins/Payment/Views/Elements/Order/event_submenu') @else @if ($template == 'user') @include('Plugins/Payment/Views/Elements/Order/user_submenu') @else @if (isset($company) && $company) @include('Plugins/Payment/Views/Elements/Order/company_list_submenu') @else @include( 'Plugins/Payment/Views/Elements/Order/list_submenu', [ 'extra' => view( 'Plugins/Payment/Views/Elements/Order/add_submenu', ['venue' => isset($venue) ? $venue : null] ) ] ) @endif @endif @endif {{-- @include('Elements/Venue/submenu') --}} @endsection @section('content') @include('Plugins/Payment/Views/Elements/Order/filter_form') @include('Plugins/Payment/Views/Elements/Order/statistics') @include('Plugins/Payment/Views/Elements/Order/index_' . $template)

Prices in *red indicate that the order's payment is not done through the LaneEngine system

@if (!isset($company) || !$company) @include( 'Elements/Common/modal', [ 'title' => t('Select Order Parameters'), 'form' => [ 'action' => action('Payment/OrdersController@secure_add', [$venue->id]), 'method' => 'get', 'id' => 'add-form' ], 'content' => view( 'Plugins/Payment/Views/Elements/Order/modal_form', ['venue' => $venue, 'currencies' => $currencies] ), 'footer' => view( 'Plugins/Payment/Views/Elements/Order/modal_footer' ) ] ) @endif @endsection