@extends('layouts.app') @section('page-title','Agências') @section('topbar-actions') Nova agência @endsection @section('content')
@forelse($agencias as $a) @empty @endforelse
AgênciaConsultoresCobrado (mês)PendenteEstado
{{ $a->nome }}
{{ $a->email }}
{{ $a->total_consultores }} {{ number_format($a->cobrado ?? 0, 2, ',', '.') }} € {{ number_format($a->pendente ?? 0, 2, ',', '.') }} € {{ $a->ativa ? 'Ativa' : 'Inativa' }}
Nenhuma agência registada.
@endsection