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

Folha de Caixa

@if ($message = Session::get('success'))

{{ $message }}

@endif
Cadastro Folha de Caixa
@csrf
@error('data_folha_caixa') {{ $message }} @enderror
Declaração de Valores
@if(isset($folha->formas_pagamento_folha) && count($folha->formas_pagamento_folha) > 0) @foreach($folha->formas_pagamento_folha as $pagamento) @endforeach @else @endif
Forma de Pagamento Data Programada Depósito Total Bruto Total Líquido Remover
@if($pagamento->data_programada_deposito && $pagamento->data_programada_deposito!= '') @endif
Total: @isset($folha->formas_pagamento_folha){{number_format($folha->formas_pagamento_folha->sum('total_bruto') ?? 0, 2,",",".") }}@endifformas_pagamento_folha)value="{{ $folha->formas_pagamento_folha->sum('total_bruto') ?? 0 }}" @else value="0" @endif readonly> @isset($folha->formas_pagamento_folha){{ number_format($folha->formas_pagamento_folha->sum('total_liquido') ?? 0, 2,",",".") }}@endifformas_pagamento_folha)value="{{ $folha->formas_pagamento_folha->sum('total_liquido') ?? 0 }}" @else value="0" @endif readonly>
@endsection