mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 04:14:57 +00:00
22 lines
648 B
PHP
22 lines
648 B
PHP
|
<span class="d-inline-block text-truncat float-right">
|
||
|
<div class="btn-group btn-group-sm" role="group">
|
||
|
|
||
|
|
||
|
<!-- EDIT BUTTON -->
|
||
|
@if ($product->user_id == \Auth::id())
|
||
|
<form action="/product/{{$product->id}}" method="POST">
|
||
|
@method('PATCH')
|
||
|
<button type="button" class="btn-sm btn-secondary mr-1">Edit</button>
|
||
|
</form>
|
||
|
@endif
|
||
|
|
||
|
|
||
|
<!-- DELETE BUTTON -->
|
||
|
<form action="/product/{{$product->id}}" method="POST">
|
||
|
@method('DELETE')
|
||
|
<button type="button" class="btn-sm btn-danger">Delete</button>
|
||
|
</form>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</span>
|