@extends('layouts.main') @section('title', 'External Neighborhood') @section('content') @push('head') @endpush
@include('include.message')
@can('create-external-neighborhood') @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('city_id', $cities, null,[ 'class'=>'form-control', 'placeholder'=>'Select City' ]) !!}
{{ __('ID')}} {{ __('Name')}} {{ __('City')}} {{ __('Store ID')}} {{ __('Delivery Price')}} {{ __('Distance')}} {{ __('Rank')}} {{ __('Change Status')}} {{ __('Action')}}
@canany(['bulk-delete-external-neighborhood', 'bulk-restore-external-neighborhood'])
@endcan
@push('script') @endpush @endsection