@extends('admin.layout.app') @section('title', 'Vendors') @section('page-title', 'Registered Vendors') @section('content')
| # | Business Name | Vendor Name | Phone | Business Type | Status | Reject Reason | Registration Date | Action | |
|---|---|---|---|---|---|---|---|---|---|
| {{$key + 1}} | {{ $vendor->business_name ?? 'N/A' }} | {{ $vendor->vendor_name ?? 'N/A' }} | {{ $vendor->vendor_email ?? 'N/A' }} | {{ $vendor->vendor_phone ?? 'N/A' }} | {{ ucfirst($vendor->business_type ?? 'N/A') }} | @if($vendor->status == 'approved') Approved @elseif($vendor->status == 'rejected') Rejected @else Pending @endif | @if($vendor->status == 'rejected') @if($vendor->rejection_reason) {{ $vendor->rejection_reason }} @else None @endif @else None @endif |
{{ $vendor->created_at ? $vendor->created_at->format('d M Y') : '' }} {{ $vendor->created_at ? $vendor->created_at->format('h:i A') : '' }} |
|
| No vendors found. | |||||||||