@extends('layouts.admin') @section('title', 'Independent Vendors') @section('content')

Independent Vendors

Manage standalone vendors and businesses outside of malls, markets, and supermarkets.

TOTAL VENDORS
{{ number_format($stats['total']) }}
ACTIVE VENDORS
{{ number_format($stats['active']) }}
VERIFIED VENDORS
{{ number_format($stats['verified']) }}
PENDING VERIFICATION
{{ number_format($stats['pending_verification']) }}
Reset
Vendors List
Showing {{ $vendors->firstItem() }}-{{ $vendors->lastItem() }} of {{ $vendors->total() }} vendors
@if($vendors->count() > 0)
@foreach($vendors as $vendor) @endforeach
VENDOR TYPE CONTACT RATING STATUS CREATED ACTIONS
@if($vendor->logo) {{ $vendor->vendor_name }} @else @endif
{{ $vendor->vendor_name }}
{{ Str::limit($vendor->vendor_description, 40) }}
{{ ucwords(str_replace('_', ' ', $vendor->vendor_type)) }}
{{ $vendor->vendor_email }}
{{ $vendor->vendor_phone }}
@for($i = 1; $i <= 5; $i++) @if($i <= floor($vendor->vendor_rating)) @elseif($i - 0.5 <= $vendor->vendor_rating) @else @endif @endfor
({{ $vendor->total_reviews }})
{{ $vendor->status_badge['text'] }} @if($vendor->is_open_now) Open Now @endif
{{ $vendor->created_at->format('M d, Y') }}
@else
No vendors found

No vendors match your current filters.

Add First Vendor
@endif
@if($vendors->hasPages()) @endif
@endsection