Make shop page dynamic laravel 9

PHOTO EMBED

Wed Jan 04 2023 06:57:31 GMT+0000 (Coordinated Universal Time)

Saved by @ahmad007 #laravel #ajax

use Livewire\withPagination;
then in component main function write
 use withPagination;
    public function render()
    {
        $products = Product::paginate(12);
        return view('livewire.shop-component', compact('products'));
    }
3. You can pic images from asset folders in blade file by using the following code
<img class="default-img" src="{{asset('assets/imgs/shop/product-')}}{{$product->id}}-1.jpg" alt="">
<img class="hover-img" src="{{asset('assets/imgs/shop/product-')}}{{$product->id}}-2.jpg" alt="">
content_copyCOPY