RELATÓRIO SIMPLES
{{ $viagem->linha->nome }} - {{ $viagem->embarcacao->nome }} - ({{ $viagem->saida->format('d/m/Y H:i') }} - {{ $viagem->chegada->format('d/m/Y H:i') }})
POR TRECHOS
| TRECHO | VALOR TOTAL | VALOR PASSAGEM | LÍQUIDO DA EMPRESA | COMISSÃO DA AGÊNCIA | TAXA DE EMBARQUE | QTD |
|---|---|---|---|---|---|---|
| {{ $trecho->trecho->municipioOrigem->nome }} x {{ $trecho->trecho->municipioDestino->nome }} | R$ {{ number_format($trecho->valor_total, 2, ',', '.') }} | R$ {{ number_format($trecho->valor_passagem, 2, ',', '.') }} | R$ {{ number_format($trecho->valor_empresa, 2, ',', '.') }} | R$ {{ number_format($trecho->valor_agencia, 2, ',', '.') }} | R$ {{ number_format($trecho->taxa_embarque, 2, ',', '.') }} | {{ $trecho->quantidade }} |
| TOTAL | R$ {{ number_format($total,2,',', '.') }} | R$ {{ number_format($totalValorPassagem,2,',', '.') }} | R$ {{ number_format($totalEmpresa,2,',', '.') }} | R$ {{ number_format($totalAgencia,2,',', '.') }} | R$ {{ number_format($totalTaxaEmbarque, 2,',', '.') }} | {{ $totalQuantidade}} |
POR CONVÊNIOS
| CONVÊNIO | VALOR TOTAL | VALOR PASSAGEM | LÍQUIDO DA EMPRESA | COMISSÃO DA AGÊNCIA | TAXA DE EMBARQUE | QTD |
|---|---|---|---|---|---|---|
| @if($convenio->convenio) {{ $convenio->convenio->nome }} @else NENHUM CONVÊNIO @endif | R$ {{ number_format($convenio->valor_total, 2, ',', '.') }} | R$ {{ number_format($convenio->valor_passagem, 2, ',', '.') }} | R$ {{ number_format($convenio->valor_empresa, 2, ',', '.') }} | R$ {{ number_format($convenio->valor_agencia, 2, ',', '.') }} | R$ {{ number_format($convenio->taxa_embarque, 2, ',', '.') }} | {{ $convenio->quantidade }} |
| TOTAL | R$ {{ number_format($total,2,',', '.') }} | R$ {{ number_format($totalValorPassagem,2,',', '.') }} | R$ {{ number_format($totalEmpresa,2,',', '.') }} | R$ {{ number_format($totalAgencia,2,',', '.') }} | R$ {{ number_format($totalTaxaEmbarque, 2,',', '.') }} | {{ $totalQuantidade}} |
POR AGÊNCIAS/EMPRESA
| EMPRESA / AGÊNCIAS | VALOR TOTAL | VALOR PASSAGEM | LÍQUIDO DA EMPRESA | COMISSÃO DA AGÊNCIA | TAXA DE EMBARQUE | QTD |
|---|---|---|---|---|---|---|
| {{ $empresa->empresa->xnome }} | R$ {{ number_format($empresa->valor_total, 2, ',', '.') }} | R$ {{ number_format($empresa->valor_passagem, 2, ',', '.') }} | R$ {{ number_format($empresa->valor_empresa, 2, ',', '.') }} | R$ {{ number_format($empresa->valor_agencia, 2, ',', '.') }} | R$ {{ number_format($empresa->taxa_embarque, 2, ',', '.') }} | {{ $empresa->quantidade }} |
| {{ $agencia->agencia->xnome }} | R$ {{ number_format($agencia->valor_total, 2, ',', '.') }} | R$ {{ number_format($agencia->valor_passagem, 2, ',', '.') }} | R$ {{ number_format($agencia->valor_empresa, 2, ',', '.') }} | R$ {{ number_format($agencia->valor_agencia, 2, ',', '.') }} | R$ {{ number_format($agencia->taxa_embarque, 2, ',', '.') }} | {{ $agencia->quantidade }} |
| TOTAL | R$ {{ number_format($total,2,',', '.') }} | R$ {{ number_format($totalValorPassagem,2,',', '.') }} | R$ {{ number_format($totalEmpresa,2,',', '.') }} | R$ {{ number_format($totalAgencia,2,',', '.') }} | R$ {{ number_format($totalTaxaEmbarque, 2,',', '.') }} | {{ $totalQuantidade}} |