@if(session('success')) @endif @if(session('error')) @endif
@if(request('search')) Clear @endif
@if(auth()->check() && auth()->user()->hasRole('Admin')) @if(request('trashed') === 'only') View Active @else View Deleted @endif @endif + Add Land Type
@if(request('trashed') === 'only')
Showing Soft Deleted Land Types.
@endif
@csrf
@forelse($landTypes as $landType) @empty @endforelse
# Land Type Name Created Date Actions
{{ $loop->iteration + ($landTypes->currentPage() - 1) * $landTypes->perPage() }} {{ $landType->name }} {{ $landType->created_at ? $landType->created_at->format('d-m-Y') : '-' }}
Edit @csrf @method('DELETE')
No land types found.
Showing {{ $landTypes->firstItem() ?? 0 }} to {{ $landTypes->lastItem() ?? 0 }} of {{ $landTypes->total() }} entries
{{ $landTypes->links('pagination::bootstrap-5') }}
@push('scripts') @endpush