@extends('layouts.relatorios') @section('titulo', 'Próximas Contas a Pagar') @section('page_header', 'Relatórios') @section('titulo-rel', 'Próximas Contas a Pagar') @section('breadcrumbs') @breadcrumbs(["itens" => ["Dashboard" => ""]]) @endsection @section('rota-filtro-data', route('relatorio-proximas-contas-pagar', compact('start', 'end'))) @section('tabela') @foreach($consulta as $item) @endforeach
Situação # Pagar/Pago a Vencimento Pagamento Valor
@if($item->diferenca_dias < 0 && !$item->data_pagamento) @else @endif {{$item->id}} {{$item->nome_consultor}} {{date('d/m/Y', strtotime($item->data_vencimento))}} {{$item->data_pagamento ? date('d/m/Y', strtotime($item->data_pagamento)) : ''}} {{number_format($item->total, 2, ",", ".")}}
@endsection @push('js') @endpush