application/x-httpd-php index.blade.php ( exported SGML document text ) @extends('../layouts.app')
@section('content') @include('../layouts.headers.cards_prod') @can('visualizar-contas-a-receber')

{{ __('Lista de contas à receber') }}

@can('adicionar-contas-a-receber') @endcan
@foreach($contas_receber as $cp) @endforeach
Código Data da compra Cliente Valor Pagamento Ações
{{$cp->id}} {{date('d - m - Y', strtotime($cp->emitido_receber))}} {{Str::limit($cp->razao_cliente, 20)}} R$ {{ number_format($cp->valor_receber, 2, ',', '.') }} {{$cp->nome_tipo_pagamento}} @can('editar-contas-a-pagar') @if($cp->forma_parcelamento_contas_receber == '1') @else @endif @endcan

Total à receber : R$ {{ number_format($valor_total_receber, 2, ',', '.') }}

@endcan @include('../layouts.footers.auth') @endsection @push('js') @endpush