@extends('admin.layouts.master') @section('content')
Democustomers
{!! 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' }}
{{ method_field('DELETE') }} {{ csrf_field() }}
{!! $democustomers->appends(['search' => Request::get('search')])->render() !!}
@endsection