31 lines
834 B
PHP
31 lines
834 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<p>
|
|
{{ $product }}
|
|
</p>
|
|
<form method="POST">
|
|
<button type="submit">Delete</button>
|
|
@method('DELETE')
|
|
@csrf
|
|
</form>
|
|
<form method="POST" action="{{ route("addToCart", $product) }}">
|
|
<button type="submit">Add to cart</button>
|
|
@csrf
|
|
</form>
|
|
</form>
|
|
<form method="POST" action="{{ route("removeFromCart", $product) }}">
|
|
<button type="submit">Remove from cart</button>
|
|
@csrf
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|