@extends('layouts/default') @section('title') {{ trans('general.bulk.delete.header', ['object_type' => trans_choice('general.location_plural', $valid_count)]) }} @parent @stop @section('content') @if ($valid_count < $selected_count) {{ trans('general.bulk.delete.warn_partial', [ 'selected_count' => $selected_count, 'valid_count' => $valid_count, 'object_type' => trans_choice('general.location_plural', $selected_count), ]) }} @else {{ trans_choice('general.bulk.delete.warn', $valid_count, [ 'count' => $valid_count, 'object_type' => trans_choice('general.location_plural', $valid_count), ]) }} @endif @foreach ($locations as $location) @php $isDeletable = $location->isDeletable(); @endphp @endforeach
{{ trans('general.name') }}
! $isDeletable])> @if ($location->tag_color) @endif {{ $location->name }} {{ number_format((int) $location->users_count) }} {{ number_format((int) $location->assets_count) }} {{ number_format((int) $location->rtd_assets_count) }} {{ number_format((int) $location->assigned_assets_count) }} {{ number_format((int) $location->accessories_count) }} {{ number_format((int) $location->assigned_accessories_count) }} {{ number_format((int) $location->consumables_count) }} {{ number_format((int) $location->components_count) }} {{ number_format((int) $location->children_count) }}
@stop