mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Fixed bulk delete
This commit is contained in:
parent
12c5ca67ff
commit
f1a83bd007
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{{-- Page title --}}
|
{{-- Page title --}}
|
||||||
@section('title')
|
@section('title')
|
||||||
Bulk Checkin & Delete
|
Bulk Checkin & Delete
|
||||||
@parent
|
@parent
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
|
@ -64,9 +64,9 @@ Bulk Checkin & Delete
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@foreach ($user->groups as $group)
|
@foreach ($user->groups as $group)
|
||||||
<a href=" {{ route('update/group', $group->id) }}" class="label label-default">
|
<a href=" {{ route('groups.update', $group->id) }}" class="label label-default">
|
||||||
{{ $group->name }}
|
{{ $group->name }}
|
||||||
</a>
|
</a>
|
||||||
@endforeach
|
@endforeach
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
@ -105,7 +105,6 @@ Bulk Checkin & Delete
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<form class="form-horizontal" role="form" method="post" action="{{ route('users/bulksave') }}">
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@stop
|
@stop
|
||||||
|
|
Loading…
Reference in a new issue