@extends('admin.layouts.app') @section('title', 'View Customers') @section('content')

View Customer List (Active) Add More

@foreach ($customers as $row) @endforeach
Photo Customer Name Executive Name Contact No Email Id Password Address Order Instruction Status Register Date Action
{{ trim($row->Fname.' '.$row->Lname) }} {{ trim(($row->executive->Fname ?? '').' '.($row->executive->Lname ?? '')) }} {{ $row->Phone }} {{ $row->EmailId }} {{ $row->Password }} {{ $row->Address }} {{ $row->Details }} @if ((int) $row->Status === 1) Approved @else Pending @endif {{ $row->CreatedDate ? $row->CreatedDate->format('d/m/Y') : '' }}   
@csrf @method('DELETE')
@endsection @push('scripts') @endpush