mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
23 lines
838 B
PHP
23 lines
838 B
PHP
@can('delete', \App\Models\Location::class)
|
|
<div id="locationsBulkEditToolbar">
|
|
<form
|
|
method="POST"
|
|
action="{{ route('locations.bulkdelete.show') }}"
|
|
accept-charset="UTF-8"
|
|
class="form-inline"
|
|
id="locationsBulkForm"
|
|
>
|
|
@csrf
|
|
<div id="locations-toolbar">
|
|
<label for="bulk_actions" class="sr-only">{{ trans('general.bulk_actions') }}</label>
|
|
<select name="bulk_actions" class="form-control select2" style="width: 200px;" aria-label="bulk_actions">
|
|
<option value="delete">{{ trans('general.bulk_delete') }}</option>
|
|
</select>
|
|
<button class="btn btn-primary" id="bulkLocationsEditButton" disabled>{{ trans('button.go') }}</button>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
@endcan
|
|
|