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

Product Stock Report

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action('ReportController@getStockReport'), 'method' => 'get', 'id' => 'stock_report_filter_form' ]) !!}
{!! 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('brand', __('product.brand') . ':') !!} {!! Form::select('brand', $brands, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('brand', 'Thickness :') !!}
{!! Form::label('brand', 'Size :') !!}
{!! Form::label('brand', 'Color :') !!}
{!! Form::close() !!} @endcomponent
@can('view_product_stock_value') @endcan
@component('components.widget', ['class' => 'box-solid'])
Name Thickness Size Color H.O Stock B.O Stock Total Stock Category Brand
@endcomponent
@endsection @section('javascript') @endsection