{!! Form::open(['method' => 'GET', 'url' => '/admin/demo-customers', 'class' => 'navbar-form navbar-right', 'role' => 'search']) !!}
{!! Form::close() !!}
@foreach($democustomers as $key => $item)
@endforeach
Sr.no |
Name |
Email |
Mobile No |
Date |
Slot |
Zoom Link |
Status |
Actions |
{{ (($democustomers->currentPage() - 1 ) * $democustomers->perPage() ) + $loop->iteration }} |
{{ $item->name }} |
{{ $item->email }} |
{{ $item->mobile_no }} |
{{ date('d M Y',strtotime($item->date)) }} |
{{ isset($item->slot)?$item->slot->start_time.' - '.$item->slot->end_time:'' }} |
{{ $item->zoom_link }} |
{{ $item->is_active==1?'Active':'Disabled' }} |
|