'Laravel 8 Not Working Livewire wire:click:prevent
Here is my view file called details-component.blade.php
<div class="wrap-butons">
<a href="#" class="btn add-to-cart" wire:click.prevent="store({{$product->id}},'{{$product->name}}',{{$product->regular_price}})">Add to Cart</a>
<div class="wrap-btn">
<a href="#" class="btn btn-compare">Add Compare</a>
<a href="#" class="btn btn-wishlist">Add Wishlist</a>
</div>
</div>
And here is my other view file called shop-component.blade.php
<div class="product-info">
<a href="{{route('product.details',['slug'=>$product->slug])}}" class="product-name"><span>{{$product->name}}</span></a>
<div class="wrap-price"><span class="product-price">{{$product->regular_price}}</span></div>
<a href="#" class="btn add-to-cart" wire:click.prevent="store({{$product->id}},'{{$product->name}}',{{$product->regular_price}})">Add To Cart</a>
</div>
</div>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
