@extends('layouts.app') @section('content')

Faturamentos

@if ($errors->has('faturamento_id'))
{{ $errors->first('faturamento_id') }}
@endif
@csrf
@if ($errors->has('data_fim')) {{ $errors->first('data_fim') }} @endif
@foreach ($faturamentos as $faturamento) @endforeach
Mês Vencimento Valor Total Ações
{{ date('m/Y', strtotime($faturamento->vencimento)) }} R$ {{ number_format($faturamento->valor_total, 2, ',', '.') }}
@if (count($faturamentos) > 0)
{{ $faturamentos->appends($filtros)->onEachSide(5)->links() }}
@endif
{{-- @if (sizeof($faturamentos) > 0)
@csrf @method('delete')
@endif --}} @endsection @push('scripts') @endpush