@extends('Layouts/dashboard') @section('submenu') @endsection @section('scripts') @endsection @section('content') @include( 'Plugins/Payment/Views/Elements/Product/form', [ 'categories' => $categories, //'products' => $products, 'event' => (isset($event) && $event ? $event : null), 'categories_qty' => ( isset($event) && $event ? $event->extra->categories_qty : (isset($settings->content->categories_qty) ? $settings->content->categories_qty : null) ) ] ) @include( 'Elements/Common/modal', [ 'id' => 'pricing-periods-modal', 'title' => t('Pricing period'), 'form' => [ 'action' => action('Payment/ProductsController@secure_pricing_periods', [$venue->id]), 'method' => 'post', 'id' => 'pricing-periods-form', 'class' => 'ajaxed' ], 'content' => view( 'Plugins/Payment/Views/Elements/Product/pricing_periods', ['venue' => $venue] ), 'footer' => view( 'Plugins/Payment/Views/Elements/Product/pricing_periods_footer', ['venue' => $venue] ) ] ) @endsection