@extends('backend.representative.layouts.representative-app') @section('title', 'Dashboard') @push('style') @endpush @section('content')
Total Stores
{{ $totalStores }}
Active Stores
{{ $activeStores }}
Store Managers
{{ $totalManagers }}
Recent Stores
@forelse ($recentStores as $store) @empty @endforelse
# Name Email Status Created
{{ $store->id }} {{ $store->name }} {{ $store->store_email ?? '—' }} @php $colors = ['draft' => 'secondary', 'available' => 'success', 'on-hold' => 'danger']; @endphp {{ ucfirst(str_replace('_', ' ', $store->status)) }} {{ $store->created_at->format('M d, Y') }}
No stores yet.
@endsection