@extends('layouts.master', ['title' => 'List - Customer - Pages'])
@section('workspace')
| Contact Person |
Contact Number |
Email |
State |
Geo Location |
Status |
|
@foreach($customers as $customer)
| {{$customer->contact_name}} |
{{$customer->contact_number}} |
{{$customer->email}} |
{{$customer->state}} |
{{$customer->geo_location}} |
{{$customer->status}}
|
|
@endforeach
@include('partials._pagination')
@endsection