@extends('layouts.main') @section('title', 'Landmark') @section('content') @push('head') @endpush
@include('include.message')
@can('create-landmark') @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('neighborhood_ids[]', $neighborhoods, null,[ 'class'=>'form-control select2', 'multiple' => true]) !!}
{{ __('ID')}} {{ __('Neighborhood')}} {{ __('Name')}} {{ __('Name en')}} {{ __('Change Status')}} {{ __('Action')}}
@canany(['bulk-delete-landmark', 'bulk-restore-landmark'])
@endcan
@push('script') @endpush @endsection