| {{ $movimento->id }} |
{{ $movimento->descricao }} |
{{ number_format($movimento->valor, 2, ',', '.') }} |
{{ number_format($movimento->valor_pago, 2, ',', '.') }} |
{{ $movimento->data_pagamento->format('d/m/Y') }} |
{{ $movimento->tipo->getValue() }} |
@if ($movimento->tipo->isEntrada())
@button([
'route' => 'admin.contas-receber.edit',
'routeParams' => ['conta' => $movimento],
'class' => 'btn-primary',
'label' => 'Visualizar/Editar',
'icon' => 'edit'
])
@endbutton
@else
@button([
'route' => 'admin.contas-pagar.edit',
'routeParams' => ['conta' => $movimento],
'class' => 'btn-primary',
'label' => 'Visualizar/Editar',
'icon' => 'edit'
])
@endbutton
@endif
|
@endforeach