@extends('backEnd.admin.layouts.master') @section('title') Customers @endsection @php $data = $data ?? []; @endphp @section('body')
{{--
--}}
@if(Auth::guard('admin')->check())
@csrf
@endif
@php($i =1) @if($data->count() > 0) @foreach($data as $item) @endforeach @else @endif
SL. Name Phone Email Address
{{$i++}} {{$item->name}} {{$item->phone}} {{$item->email}} {{$item->address}}
No Data Found!
{{$data->links()}}
@endsection @section('js') @endsection