@extends('Layouts/dashboard') @section('submenu') @if (isset($company) && $company) @include('Plugins/Payment/Views/Elements/Order/company_list_submenu') @else @include('Plugins/Payment/Views/Elements/Order/list_submenu', ['settings' => $settings]) @endif {{-- @include('Elements/Venue/submenu') --}} @endsection @section('content') {!! Form::open(['target' => 'tickets']) !!} @foreach ($products as $category)

{{ $category->name }}


@foreach ($category->Products as $product)
{{ $product->name }}
{{ amount($product->price, oa($currency)) }}
{!! Form::select( 'data[Ticket][' . $product->id . '][qty]', numbers(['min' => 0, 'max' => 100]), null ) !!}

@endforeach @endforeach {{-- --}} {{----}} {!! Form::close() !!} @endsection