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

@lang('lang_v1.update_Multiple_products_prices')

{{-- فلتر نوع الفلترة --}} @component('components.widget', ['class' => 'box-solid'])
{!! Form::label('type', __('lang_v1.type') . ':') !!} {!! Form::select( 'type', [ 'category' => __('product.category'), 'product' => __('sale.product'), 'brand' => __('product.brand'), 'all' => __('lang_v1.all_products') ], null, ['class' => 'form-control select2', 'id' => 'goal_type_select', 'style' => 'width:100%'] ) !!}
{{-- Category select --}}
{!! Form::label('category_id', __('product.category') . ':') !!}
{!! Form::select( 'category_id', ['' => __('lang_v1.please_select')] + $categories->pluck('name','id')->toArray(), null, ['class' => 'form-control select2', 'id' => 'category_id', 'style' => 'width: 100%;'] ) !!}
{{-- Brand select --}}
{!! Form::label('brand_id', __('product.brand') . ':') !!}
{!! Form::select( 'brand_id', ['' => __('lang_v1.please_select')] + $brands->pluck('name','id')->toArray(), null, ['class' => 'form-control select2', 'id' => 'brand_id', 'style' => 'width: 100%;'] ) !!}
{{-- Product search --}}
{!! Form::label('search_product_for_stock_adjustment', __('product.product_name') . ':') !!}
{!! Form::text( 'search_product_for_stock_adjustment', null, ['class' => 'form-control', 'id' => 'search_product_for_stock_adjustment', 'placeholder' => __('stock_adjustment.search_product')] ) !!}
@endcomponent {{-- جدول المنتجات --}} @component('components.widget', ['class' => 'box-solid'])
@endcomponent {{-- تحديث الأسعار --}} @component('components.widget', ['class' => 'box-solid'])

@lang('lang_v1.update_prices_for_all_variations') @show_tooltip(__('tooltip.multiple_prices_update'))

{{-- نوع التعديل والقيمة --}}
{{-- اختيار الأعمدة --}}
{{-- @lang('lang_v1.leave_empty_to_update_all_columns') --}}


{{-- زر التقديم --}}
@endcomponent
{{-- Scripts --}} @stop