Joining Take and Return controllers on just Take (store and delete)

This commit is contained in:
2018-09-15 00:22:57 -03:00
parent b40a9fa3f1
commit c4bd6a8a1a
4 changed files with 15 additions and 22 deletions

View File

@@ -1,12 +1,15 @@
@if ($item->used_by == \Auth::id())
<span class="float-right">
<form action="/return" method="POST">
<form action="/take" method="POST">
{{ csrf_field() }}
@method('DELETE')
<input type="hidden" name="item" value="{{$item->id}}">
<button type="submit" class="btn btn-sm btn-danger">Return It</button>
</form>
</span>
<span class="float-right mr-3"><em>{{\Carbon\Carbon::parse($item->updated_at)->diffForHumans()}}</em></span>
@else
<span class="float-right">
<form action="/alert" method="POST">