@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.bulk_edit') }} @parent @stop {{-- Page content --}} @section('content')
{{ trans_choice('admin/locations/message.bulkedit.warn', count($locations), ['count' => count($locations)]) }}
@foreach ($locations as $location) @endforeach {{-- Bulk company reassignment is superuser-only when FMCS is on. See BulkLocationsController::buildUpdateArray for the rationale (amplified blast radius vs. single-location edit). --}} @if ($snipeSettings->full_multiple_companies_support == '1' && auth()->user()->isSuperUser()) @endif {{-- excludeIds keeps the selected locations out of the parent picker so an operator can't attempt to set one of the batch as the new parent - see snipeit.js --}} {{ trans_choice('admin/locations/message.bulkedit.show_selected', count($locations), ['count' => count($locations)]) }}
    @foreach ($locations as $location)
  • @if ($location->tag_color) @endif {{ $location->name }}
  • @endforeach
@stop