@extends('shaun_core::admin.layouts.master') @section('content')
@if ($transfer) @endif
{{__('Storage System')}}

{{__("View and manage storage system services. The storage system is used to handle file uploads for your site. You can configure this to use Amazon's S3 or CloudFront service or any CDN.")}}

@foreach ($services as $service) @endforeach
{{__('Name')}} {{__('File')}} {{__('Storage Used')}} {{__('Default')}} {{__('Action')}}
{{$service->name}} {{$service->getCountFile()}} {{formatNumberNoRound($service->getTotalSize(),'bytes')}} @if ($service->is_default) {{__('Yes')}} @else {{__('No')}} @endif {{__('Edit')}} @if (!$transfer && $service->is_default && $service->key != 'public') {{__('Transfer')}} @endif @if ($transfer && $service->key == $transfer) {{__('Stop transfer')}} @endif
@stop