@extends('layouts.main') @section('title', 'External Neighborhood') @section('content') @push('head') @endpush
@include('include.message')
@can('create-external-neighborhood-store-group') @endcan
@csrf
{!! Form::select('delete_status', $deleteStatusList, null,[ 'class'=>'form-control', 'placeholder' => 'Select Delete Status']) !!}
{!! Form::select('element_status', $elementStatusList, null,[ 'class'=>'form-control', 'placeholder' => 'Select Element Status']) !!}
{!! Form::select('external_neighborhood_id', $externalNeighbothoods, null,[ 'class'=>'form-control', 'placeholder'=>'Select External Neighbothoods' ]) !!}
{!! Form::select('store_group_id', $storeGroups, null,[ 'class'=>'form-control', 'placeholder'=>'Select Store Group' ]) !!}
{{ __('ID')}} {{ __('External Neighborhood')}} {{ __('Store Group')}} {{ __('Delivery Price')}} {{ __('Change Status')}} {{ __('Action')}}
@canany(['bulk-delete-external-neighborhood-store-group', 'bulk-restore-external-neighborhood-store-group'])
@endcan
@push('script') @endpush @endsection