@extends('themes.base.layout') @section('title', trans('admin.storage_title')) @section('breadcrumb') @endsection @section('content')
@if (count($storageLocations) == 0)

@lang('admin.no_storages_title')

@lang('admin.no_storages_text')

@lang('admin.no_storages_text2')

@lang('admin.create_storage')

@else @foreach ($storageLocations as $storage) @endforeach
{{ $storage->name }} @if ($storage->is_default) @endif @if (!$storage->is_active) @endif
{{ $storage->location }}
@lang('forms.edit_action') @if (!$storage->is_internal) @lang('forms.delete_action') @endif
{{ $storageLocations->links() }}
@lang('admin.legend')
@lang('admin.default_storage_legend')
@lang('admin.inactive_storage_legend')
@endif
@endsection