@extends('layouts.admin.index') @section('content')
Admin Homepage
Info:
  • Select Products for Slider: Choose the products you want to display in the slider. You can select up to 6 products.
  • If images have already been selected in current slider images, please remove the existing images first.
  • Multiple Selection: Click on the product cards to select or deselect them.
  • Product Details: Each product displays its image and name.
Select Slider Products
@csrf
@foreach($products as $product)
{{ $product->name }}
{{ $product->name }}
@endforeach

Current Slider Images

@foreach($sliderImages as $sliderImage)
{{ $sliderImage->product->name }}
{{ $sliderImage->product->name }}

{{ $sliderImage->product->description }}

@csrf
@endforeach
@endsection