@extends('layouts.admin') @php $routeName = request()->route()->getName(); $baseRoute = 'admin.data-config.products'; $roleSelectConfig = [ "placeholder" => __('Select Category'), "hasSearch" => true, "searchPlaceholder" => __('Search Category...'), "toggleClasses" => "hs-select-toggle luxury-select-toggle", "dropdownClasses" => "hs-select-menu w-full bg-white dark:bg-slate-900 border border-slate-200 dark:border-white/10 rounded-xl shadow-2xl mt-2 z-[100]", "optionClasses" => "hs-select-option py-2.5 px-3 text-sm text-slate-800 dark:text-slate-300 cursor-pointer hover:bg-slate-100 dark:hover:bg-white/5 rounded-lg flex items-center justify-between", ]; @endphp @section('content')
{{-- Page Header --}} {{-- Tab Navigation --}} {{-- Tab Contents --}} {{-- Products Tab --}}
{{-- Loading Overlay (Products) --}}
@include('admin.products.partials.tab-products')
{{-- Categories Tab --}}
{{-- Loading Overlay (Categories) --}}
@include('admin.products.partials.tab-categories')
{{-- Logs Tab --}}
{{-- Loading Overlay (Logs) --}}
{{-- Content will be loaded via AJAX --}}
{{-- Import Products Modal --}}

{{ __('Import Products') }}

@if(auth()->user()->isSystemAdmin())
@endif

{{ __('Only .xlsx files are supported (Max 5MB)') }}

{{ __('Optional. Reference each filename in the image column, then upload them here as a .zip (Max 60MB)') }}

{{ __('Download Template') }}

{{ __('Please use our standard template to ensure data compatibility.') }}

{{ __('Download Template') }}

@csrf
@if(auth()->user()->isSystemAdmin())

{{ __('Type to search or leave blank for system defaults.') }}

@endif
@endsection @section('scripts') @endsection