pai-sklep/resources/views/product/view.blade.php

23 lines
442 B
PHP
Raw Normal View History

2021-10-28 11:19:42 +02:00
<!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>
2021-11-14 14:51:49 +01:00
<form method="POST">
<button type="submit">Delete</button>
@method('DELETE')
2021-10-28 11:19:42 +02:00
@csrf
</form>
</div>
</body>
</html>