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