@extends('layouts.admin') @section('content')
@include('admin.partials.page-header', [ 'icon' => 'bi bi-bag', 'title' => 'All Products', 'subtitle' => 'Relograde Products', 'show_import' => true, 'import_id' => 'btnImportProducts', 'show_export' => true, 'export_id' => 'btnExportProducts', 'show_refresh' => true, ]) @include('admin.partials.advanced-filter', [ 'filters' => [ [ 'col' => 'col-md-3', 'text_id' => 'brand-filter-text', 'menu_id' => 'brandFilter', 'placeholder' => 'Select Brand', 'search' => true, 'options' => \App\Helpers\Helper::brands(), ], [ 'col' => 'col-md-2', 'text_id' => 'status-filter-text', 'menu_id' => 'statusFilterMenu', 'placeholder' => 'Select Status', 'search' => true, 'options' => [ ['label' => 'Available', 'value' => '1'], ['label' => 'Unavailable', 'value' => '0'], ], ], ], ])
# Name Brand Category Price Currency Status Created At Action
@endsection @push('scripts') @endpush