@extends('layouts.app') @section('title', __('lang_v1.stock_transfers')) @section('content')

@lang('report.opening_stock_report')

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getOpeningStock']), 'method' => 'get', 'id' => 'opening_stock_report_filter_form' ]) !!}
{!! Form::label('product_id', __('lang.product') . ':') !!} {!! Form::select('product_id', $products, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['id' => 'location_id', 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('stock_id', __('stock.stock') . ':') !!} {!! Form::select('stock_id', [], null, ['id' => 'stock_id', 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::close() !!} @endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => __('report.opening_stock_report')])
@lang('messages.date') @lang('lang.product') @lang('lang.location') @lang('lang.stock') @lang('lang.quantity') @lang('lang.price') @lang('lang.notes') @lang('messages.action')
@lang('lang.total'):
@endcomponent
@stop @section('javascript') @endsection @cannot('view_purchase_price') @endcannot