@extends('layouts.master') @section('meta') @stop @section('content')
@foreach($customers as $customer) @endforeach
Customer Name Phone Number Email Created At
{{$customer->name}} {{$customer->phone_number}} {{$customer->email}} {{date("d M, Y h:i a", strtotime($customer->created_at))}}
@stop @section('scripts') @stop