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

{{ __('Stock History Report')}}

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'stockHistoryReport']), 'method' => 'get', 'id' => 'stock_history_report_filter_form' ]) !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, $default_location->id ?? null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('category_id', __('category.category') . ':') !!} {!! Form::select('category', $categories, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'category_id']); !!}
{!! Form::label('sub_category_id', __('product.sub_category') . ':') !!} {!! Form::select('sub_category', array(), null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'sub_category_id']); !!}
{!! Form::label('brand', __('product.brand') . ':') !!} {!! Form::select('brand', $brands, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('unit',__('product.unit') . ':') !!} {!! Form::select('unit', $units, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('stock_history_report_date',__('Date') . ':') !!} {!! Form::text('stock_history_report_date', null, ['class' => 'form-control', 'readonly', 'required', 'id' => 'stock_history_report_date']); !!}
{!! Form::close() !!} @endcomponent
@component('components.widget', ['class' => 'box-solid'])
@lang('business.product') @lang('Sku ') @lang('Opening Stock') @lang('Purchase Stock') @lang('Stock Transfers (In)') @lang('Sell Return') @lang('Stock Adjustment') @lang('Sales Stock') @lang('Purchase Return') @lang('Stock Transfers (Out)') @lang('Closing Stock')
@endcomponent
@endsection @section('javascript') {{-- selling_price_group --}} @endsection