@extends('layouts.app') @section('header')
Customer search results
@csrf
@endsection @section('content')
@foreach($customers as $customer) @endforeach
Name Created on Last KYC date KYC Done By
{{$customer->name}} @if(!isset($customer->idDocument)) Add ID Document @endif {{date_format(date_create($customer->created_at),'D dS M Y h:i:sa')}} {{date_format(date_create($customer->last_kyc),'D dS M Y')}} {{$customer->kycUser->name}} view
@endsection