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

Folha de Caixa

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

{{ $message }}

@endif @if ($message = Session::get('error'))

{{ $message }}

@endif
Lista Folha de Caixa
@foreach ($folhas as $folha) @endforeach
Nª Controle Posto Data Turno Operador Total Vendas Numerário Data Programada Depósito Ações
{{ $folha->id }} {{ $folha->posto->nome_posto }} {{ date('d/m/Y', strtotime($folha->data_folha_caixa)) }} {{ $folha->turno }} {{ $folha->nome_operador }} {{ number_format($folha->total_vendas, 2, ",", " ") }} {{ number_format($folha->formas_pagamento_folha->sum('total_bruto'), 2, ",", " ") }} @php $dataDeposito = $folha->formas_pagamento_folha->where('formaPagamento.nome_forma_pagamento', 'Numerário')->first(); @endphp {{ $dataDeposito && $dataDeposito->data_programada_deposito ? date('d/m/Y', strtotime($dataDeposito->data_programada_deposito)) : '' }} @if($permissao->alterar_folha_caixa) Editar @endif @if($permissao->excluir_folha_caixa)
@csrf @method('DELETE')
@endif
@endsection