@extends('shaun_core::admin.layouts.master') @section('content')
{{__("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.")}}
| {{__('Name')}} | {{__('File')}} | {{__('Storage Used')}} | {{__('Default')}} | {{__('Action')}} | @foreach ($services as $service)
|---|---|---|---|---|
| {{$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 |