@extends('layouts.admin-portal') @section('page-title') Customers @endsection @section('style') @endsection @section('content')
@if(count($errors) > 0 ) @endif

Customers

ADD Customers @php $timezones = App\Models\TimeZone::all(); @endphp
@forelse($customers as $customer)
@if(isset($customer->photo)) @else @endif

{{$customer->first_name.' '.$customer->last_name}}

{{$customer->age}}, {{$customer->residence}}

@empty
@endforelse
@endsection @push('custom-js-scripts') @endpush