@extends('layouts.main') @section('title', 'External Order') @section('content') @push('head') @endpush
@include('include.message')
@can('create-external-order') @endcan
@csrf
{!! Form::select('store_id', $stores, null,[ 'class'=>'form-control select2', 'placeholder'=>'Select Store' ]) !!}
{!! Form::select('order_status', $orderStatuses, null,[ 'class'=>'form-control', 'placeholder' => 'Select Order Status']) !!}
{!! Form::select('duration', $durations, null,[ 'class'=>'form-control', 'placeholder' => 'Select Duration']) !!}
{!! Form::select('transport_type', $transportTypes, null,[ 'class'=>'form-control', 'placeholder' => 'Select Transport Type']) !!}
{!! Form::select('neighborhood_id', $externalNeighborhoods, null,[ 'class'=>'form-control', 'placeholder' => 'Select External Neighborhood']) !!}
{{ __('Order')}} {{ __('Store')}} {{ __('Driver')}} {{ __('Transport Type')}} {{ __('Duration')}} {{ __('Discount')}} {{ __('Coupon')}} {{ __('Customer Phone')}} {{ __('Customer Address')}} {{ __('Extra Note')}} {{ __('Delivery Date')}} {{ __('Action')}}
@push('script') @endpush @endsection