@extends('layouts.admin') @section('title', $Title ) @section('content')
@if($message = Session::get('errormsg')) @endif @if($message = Session::get('msg')) @endif
@csrf
@php $number = ($appointmentList->currentpage()-1)* $appointmentList->perpage() + 1;@endphp @forelse($appointmentList as $key => $list) @empty @endforelse
# Name Email Mobile Location Created At
{{ $number }} {{$list->name}} {{$list->email}} {{$list->mobile}} @if(!empty($list->locationdata->title)) {{$list->locationdata->title}} @endif {{$list->created_at}}
No Data Found
# Name Email Mobile Location Created At
Showing {{ $appointmentList->firstItem() }} to {{ $appointmentList->lastItem() }} of total {{$appointmentList->total()}} entries
{{ $appointmentList->links() }}
@endsection