@extends('dashboard.layouts.main') @section('PageContent')
Resumo do sistema
Estatisticas mensal de registo
  • Formais: 200.000,00
  • Informais: 200.000,00
Total de Produtos
{{ $totalProdutos }}
Total de Serviços
{{ $totalServicos }}
Total de Informais
{{ $totalInformais }}
Total de Formais
{{ $totalFormais }}
Formal / Informal
50%
50%
  • Formais: {{ $totalFormais }}
  • Informais: {{ $totalInformais }}
@foreach ($users as $user) @endforeach
ID Tipo Nome Data de Registo Telefone Estado Ações
{{ $user->id }} {{ $user->formalType ? 'Formal' : ($user->informalType ? 'Informal' : 'Nulo') }}
{{ $user->name }}
{{ $user->created_at->format('d M Y') }} {{ $user->phone ?? 'N/A' }} {{-- {{ ucfirst($user->status) }} --}} Activo
@csrf @method('DELETE')
@endsection