@extends('layouts.app_products') @section('title', __('lang_v1.service')) @section('content')
{{__('report.filters')}}
{!! Form::select( 'type', ['single' => __('lang_v1.single'), 'variable' => __('lang_v1.variable'), 'combo' => __('lang_v1.combo')], null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_type', 'placeholder' => __('lang_v1.all'), ], ) !!} {!! Form::label('type', __('product.product_type') . ':') !!}
{!! Form::select('category_id', $categories, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_category_id', 'placeholder' => __('lang_v1.all'), ]) !!} {!! Form::label('category_id', __('product.service_category') . ':') !!}
{!! Form::select('unit_id', $units, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_unit_id', 'placeholder' => __('lang_v1.all'), ]) !!} {!! Form::label('unit_id', __('product.unit') . ':') !!}
{!! Form::select('tax_id', $taxes, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_tax_id', 'placeholder' => __('lang_v1.all'), ]) !!} {!! Form::label('tax_id', __('product.tax') . ':') !!}
{!! Form::select('location_id', $business_locations, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id'=>'location_id', 'placeholder' => __('lang_v1.all'), ]) !!} {!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('brand_id', $brands, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_brand_id', 'placeholder' => __('lang_v1.all'), ]) !!} {!! Form::label('brand_id', __('product.brand') . ':') !!}
{!! Form::select( 'active_state', ['active' => __('business.is_active'), 'inactive' => __('lang_v1.inactive')], null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'active_state', 'placeholder' => __('lang_v1.all'), ], ) !!} {!! Form::label('active_state', __('business.is_active') . ':') !!}
@if (!empty($pos_module_data)) @foreach ($pos_module_data as $key => $value) @if (!empty($value['view_path'])) @includeIf($value['view_path'], ['view_data' => $value['view_data']]) @endif @endforeach @endif

@if ($is_woocommerce)

@endif
@can('product.view')
@if ($is_admin) @lang('lang_v1.download_excel') @endif @can('product.create') @lang('messages.add') @endcan
@include('service.partials.product_list')
@endcan @if ($is_woocommerce) @include('product.partials.toggle_woocommerce_sync_modal') @endif @include('product.partials.edit_product_location_modal')
@endsection @section('javascript') @endsection