@extends('layouts.app') @section('title', __('sync::lang.sync')) @section('content')

@lang('sync::lang.sync')

@component('components.widget') @slot('title') {{ __('sync::lang.last_time_synced_quantities') }} @endslot

{{ $last_time }}

@endcomponent
@component('components.widget')

{{ $active ? __('lang_v1.active') : __('lang_v1.inactive') }} @if (!empty($store_name)) - {{ $store_name }} @endif

@endcomponent
@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('category', __('product.category') . ':') !!} {!! Form::select('category_id', $categories, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'category_id', 'placeholder' => __('lang_v1.all'), ]) !!}
{!! Form::label('sub_category_id', __('product.sub_category') . ':') !!} {!! Form::select('sub_category_id',[], null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'sub_category_id', 'placeholder' => __('lang_v1.all'), ]) !!}
{!! Form::label('brand', __('product.brand') . ':') !!} {!! Form::select('brand_id', $brands, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'brand_id', 'placeholder' => __('lang_v1.all'), ]) !!}
{!! Form::label('status', __('product.status') . ':') !!} {!! Form::select('status', $statuses, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'status_id', 'placeholder' => __('lang_v1.all'), ]) !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => __('sync::lang.products_sync')]) @can('sync.create') @slot('tool')
@lang('messages.add')
@endslot @endcan @can('sync.view')
{{ __('lang_v1.product_image') }} @lang('sale.product') @lang('product.sku') @lang('product.brand') @lang('product.category') @lang('sync::lang.syncing_at') @lang('messages.action')
.
@endcan @endcomponent @stop @section('javascript') @endsection