@extends('admin.layouts.master')
@section('main_content')
@include('admin.layouts.nav')
@include('admin.layouts.sidebar')
| SL |
Photo |
Name |
Email |
Status |
Action |
@foreach ($customers as $customer)
| {{ $loop->iteration }} |
@if($customer->photo == null)
@else
@endif
|
{{ $customer->name }} |
{{ $customer->email }} |
@if($customer->status == 0)
Pending
@elseif($customer->status == 1)
Active
@else
Suspended
@endif
|
|
@endforeach
@endsection