@extends('Layouts/dashboard') @section('submenu') @include('Plugins/Payment/Views/Elements/Order/list_submenu') @endsection @section('content') {!! Form::open(['class' => 'form-inline mb filter', 'method' => 'get']) !!} {!! Form::text( 'date', (isset($date) ? $date : null), [ 'class' => 'datepicker form-control', 'placeholder' => t('Date') ] ) !!} {!! Form::close() !!} @if ($date)

{{ __('Orders') }}

@foreach ($orders as $key => $row) @include('Plugins/Payment/Views/Elements/Order/seats_row', ['data' => $row]) @endforeach
{{ __('ID') }} {{ __('User') }} {{ __('Total') }} {{ __('Net Total') }} {{ __('Created') }} {{ __('Type') }} {{ __('Allocation') }}
{!! Form::open([ 'data-toggle' => 'validator', 'id' => 'order-edit-form', 'class' => 'seats-allocation' ]) !!} {{-- @if (isset($settings->PhotoSeats->id)) --}}

{{ __('Table map') }}

{{----}}
@foreach ($products as $key => $value) @include('Plugins/Payment/Views/Elements/Order/seats', ['data' => $value]) @endforeach
{{-- @endif --}} {!! Form::close() !!} @endif @endsection