@extends('backEnd.layouts.master') @section('title', 'Product Features Management') @push('styles') @endpush @section('content')

Product Features Management

Showing products for theme: {{ ucfirst($activeTheme ?? \App\Services\ThemeService::active()) }}

Search করে product select করলে নিচে feature card খুলবে বা existing card-এ scroll করবে।
@foreach($categories as $category)

{{ $category->name }}

{{ $category->products->count() }} Products
@foreach($category->products as $product) @include('backEnd.product.partials.feature-card', compact('product')) @endforeach
@endforeach
@if($categories->isEmpty())

No published products found for this theme.

@endif @endsection @push('scripts') @endpush