@can('add_inventories') @if ($inventories->count() < (int) config('shopper.admin.inventory_limit') + 1)
{{ __('shopper::forms.actions.add_label', ['label' => __('shopper::pages/settings/global.location.single')]) }}
@endif @endcan
{{ __('shopper::pages/settings/global.location.menu') }} {{ __('shopper::pages/settings/global.location.description') }} {{ __('shopper::pages/settings/global.location.count', ['count' => $inventories->count(), 'total' => config('shopper.admin.inventory_limit')]) }}
    @foreach ($inventories as $inventory)
  • {{ $inventory->name }}

    @if ($inventory->is_default)
    {{ __('shopper::words.default') }}
    @endif
    @if ($inventory->country)
    {{ $inventory->country->name }} flag {{ $inventory->country->name }}
    @endif
    @if (! $inventory->is_default) {{ ($this->removeAction)(['id' => $inventory->id]) }} @endif
  • @endforeach