{{-- Extends layout --}} @extends('layout.default') {{-- Content --}} @section('content') {{-- Dashboard 1 --}} @parent
@include('common.msg')

Land Owner List

@forelse($rows as $r) @empty @endforelse
# Name of Land Owner Email Mobile Number Type of Use Action
{{$index++}}. {{$r->name_of_landowner??''}} {{$r->user_email??''}} {{$r->mobile_number??''}} {{$r->type_of_use??''}}
@csrf @method('delete')
No data found!
{!! $rows->appends(request()->query())->links('pagination::bootstrap-4') !!}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') {{-- vendors --}} {{-- page scripts --}} @endsection