@extends('layouts.app') @section('title', 'Estabelecimentos') @section('content')
{{ $stats['total'] ?? 0 }}
Total de Estabelecimentos
{{ $stats['active'] ?? 0 }}
Ativos
{{ $stats['total'] > 0 ? round(($stats['active'] / $stats['total']) * 100, 1) : 0 }}% do total
{{ $stats['pending'] ?? 0 }}
Pendentes
{{ $stats['total'] > 0 ? round(($stats['pending'] / $stats['total']) * 100, 1) : 0 }}% do total
{{ ($stats['suspended'] ?? 0) + ($stats['inactive'] ?? 0) }}
Inativos / Suspensos
{{ $stats['total'] > 0 ? round((($stats['suspended'] + $stats['inactive']) / $stats['total']) * 100, 1) : 0 }}% do total

Estabelecimentos

Novo Estabelecimento
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Limpar
Código Comerciante Mercado Seção Status Ações
@endsection @push('styles') @endpush @push('scripts') @endpush