@extends('admin.layouts.admin') @section('title','Merchants') @section('page-title','Merchants') @section('content')
All Merchants Add Merchant
@forelse($merchants as $merchant) @empty @endforelse
# Name Email Status Created Actions
{{ $loop->iteration }} {{ $merchant->name }} {{ $merchant->email }} @if($merchant->is_active) Active @else Inactive @endif {{ $merchant->created_at->format('d M Y') }}
No records found
@endsection