@extends('layouts.admin') @section('buttons') @if($id && $url = $record->getDetailUrl(['preview' => true])) Preview @endif @can('update', $record) @endcan @can('delete', $record) @endcan @can('back', $record) Back @endcan @endsection @section('content')
@csrf
@csrf
{{ $config['page_name'] }}
@row([ 'type' => 'datepicker', 'field' => 'start_date', ]) @row([ 'type' => 'datepicker', 'field' => 'end_date', ]) @row([ 'type' => 'searchselect', 'field' => 'location_id', 'title' => 'Location', 'options' => [ 'value_key' => 'id', 'title_key' => 'title', 'list' => $locations->toArray(), ] ]) @row([ 'type' => 'searchselect', 'field' => 'industry_id', 'title' => 'Industry', 'options' => [ 'value_key' => 'id', 'title_key' => 'title', 'list' => $industries->toArray(), ] ]) @row([ 'type' => 'searchselect', 'field' => 'show_id', 'title' => 'Show', 'options' => [ 'value_key' => 'id', 'title_key' => 'title', 'list' => $shows->toArray(), ] ]) @include('admin.base.status')
@include('admin.base.footer')
@endsection @section('js') @endsection