@extends('layouts.master')
@section('Title')
Dashboard |Restaurant
@endsection
@section('content')
| Name |
Email |
Phone |
Joined |
Status |
Action |
@foreach($customers as $customer)
| {{$customer->first_name}} |
{{$customer->email}} |
{{$customer->phone}} |
{{$customer->joined_date}} |
Verified
|
|
@endforeach
| Name |
Email |
Phone |
Joined |
Verification Status |
Action |
@endsection
@section('scripts')
@endsection