@props([ 'name' => 'products', 'selectedProducts' => null, 'label' => __('dashboard.select_products'), ]) @php // Ensure selectedProducts is a collection and extract IDs safely $selectedProductsCollection = $selectedProducts instanceof \Illuminate\Support\Collection ? $selectedProducts : collect($selectedProducts ?? []); $selectedIds = $selectedProductsCollection->pluck('id')->filter()->values()->toArray(); @endphp
{{ __('dashboard.available_products') }} 0
{{ __('dashboard.loading') }}
{{ __('dashboard.selected_products') }} 0
@push('styles') @endpush @push('scripts') @endpush