@extends('layouts.app', ['activePage' => 'user', 'titlePage' => __('Users')]) @section('content')

Customers

@if($customers && count($customers)>0) @foreach($customers as $customer) @endforeach
ID Name Email Created At Actions
{{$customer->id ?? ''}} {{$customer->First_Name ?? ''}} {{$customer->Last_Name ?? ''}} {{$customer->Email ?? ''}} @php $dt = \DateTime::createFromFormat('U',strtotime($customer->created_at),new \DateTimeZone('Europe/London')); echo $dt->format('d/m/Y'); @endphp View
ID Name Email Created At Actions
@else
Failed to load the customers.
@endif
@endsection @push('js') @endpush