@extends('partials.layout') @section('titulo', 'Visão geral') @section('conteudo')

Visão geral

@include('partials.filtro-empresa', ['rota' => 'inicio'])
R$ {{ number_format($aReceber,2,',','.') }}
R$ {{ number_format($aPagar,2,',','.') }}
{{ $projetos->count() }}
Resultado por projeto
@forelse($projetos as $p) @empty @endforelse
ProjetoRecebidoCustoResultado
@if($p['cc'])CC {{ $p['cc'] }} · @endif{{ $p['nome'] }} {{ number_format($p['rec'],2,',','.') }} {{ number_format($p['cus'],2,',','.') }} {{ number_format($p['res'],2,',','.') }}
{{ $cnpj ? 'Nenhum projeto para esta empresa.' : 'Nenhum lançamento ainda.' }}
@endsection