@extends('user_dashboard.layouts.app') @section('content')
@include('user_dashboard.layouts.sidebar')
@forelse ($landing_enquires as $key=>$landing_enquiry) @empty @endforelse
Sr. No Date Name Email Phone Plan
{{($key+1) + ($landing_enquires->currentPage() - 1)*$landing_enquires->perPage()}} {{$landing_enquiry->created_at->format('d-M-Y h:i A')}} {{$landing_enquiry->name}} {{$landing_enquiry->email}} {{$landing_enquiry->phone}} {{optional(App\Models\Admin\Plan::where('slug',$landing_enquiry->plan_slug)->first())->title}}

Nothing Found

{!! $landing_enquires->links() !!}
@endsection