@extends('layouts.app') @section('title', __('report.stock_report')) @section('content')

{{ __('report.stock_report')}}

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\Modules\CashVan\Http\Controllers\VanStockController::class, 'getStockReport']), 'method' => 'get', 'id' => 'stock_report_filter_form' ]) !!}
{!! Form::label('van_id', __('cashvan::cashvan.cashvan') . ':') !!} {!! Form::select('van_id', $vans, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::close() !!} @endcomponent
@component('components.widget', ['class' => 'box-solid']) @include('cashvan::van_stock.partials.stock_report_table') @endcomponent
@endsection @section('javascript') @endsection