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