@extends('layouts.admin') @section('title', 'Independent Vendors') @section('content')
Manage standalone vendors and businesses outside of malls, markets, and supermarkets.
| VENDOR | TYPE | CONTACT | RATING | STATUS | CREATED | ACTIONS |
|---|---|---|---|---|---|---|
|
@if($vendor->logo)
{{ $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') }}
|