@extends('padrao') @section('content')

Filtro Estoque

@csrf

Listagem Estoque

@if(!empty($estoques)) @foreach ($estoques as $estoque) @endforeach @endif
# ID Produto Produto Qtd Ant Qtd Vend Qtd Atual Data Motivo Tipo DOC
{{$estoque->id}} {{$estoque->id_produto}} {{$estoque->descricao_longa}} {{$estoque->qtd_atual}} {{$estoque->qtd_venda}} {{$estoque->qtd_novo}} {{Str::formatBRDatetime($estoque->data_estoque)}} {{$estoque->motivo}} @switch($estoque->tipo_movimento) @case(0) Entrada @break @case(1) Saída @break @endswitch {{$estoque->id_referencia}} visibility
@if(!empty($estoques)) {{$estoques->lastItem().' de '.$estoques->total().' registros'}} @endif
@if(!empty($estoques)) {{ $estoques->links() }} @endif
@endsection @section('js') @endsection