@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
{{ $storage->location }}
@lang('forms.edit_action') @lang('forms.delete_action')
{{ $storageLocations->links() }}
@endif
@endsection