@extends('adminlte::page') @section('title', 'Contas a Pagar') @section('content_header')

Contas a Pagar

Novo Conta
@stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif
@if(count($contasPagar) == 0 ) @else @foreach($contasPagar as $contaPagar) @endforeach @endif
Código Data emissão Data Competência Valor Previsto Data Vencimento Valor Vencimento Data Pagamento Valor Pagamento Ação
Nenhum registro
{{$contaPagar->codigo}} {{ \Carbon\Carbon::parse($contaPagar->data_emissao)->format('d/m/Y') }} {{ \Carbon\Carbon::parse($contaPagar->data_competencia)->format('d/m/Y') }} {{ number_format($contaPagar->vlr_previsto, 2, ',', '.') }} {{ \Carbon\Carbon::parse($contaPagar->data_vencimento)->format('d/m/Y') }} {{ number_format($contaPagar->vlr_vencimento, 2, ',', '.') }} {{ \Carbon\Carbon::parse($contaPagar->data_pagamento)->format('d/m/Y') }} {{ number_format($contaPagar->vlr_pagamento, 2, ',', '.') }}
{{ $contasPagar->onEachSide(4)->links() }}
@method('DELETE') @csrf
@stop @section('js') @stop