@extends('layouts.admin')
@section('title', 'Urus Vendor')
@section('content')
{{-- PAGE HEADER --}}
{{-- Tabs removed --}}
{{-- Senarai Vendor --}}
@forelse($vendors as $vendor)
{{ $vendor->name }}
{{ $vendor->email }}
Daftar pada: {{ $vendor->created_at->format('d M Y') }}
{{ $vendor->customers_count }}
Pelanggan
Aktif: {{ $vendor->active_customers }}
@empty
Belum ada vendor berdaftar.
@endforelse
{{-- Daftar Vendor Baru --}}
@endsection