@extends('backend.layouts.grid') @section('title', __('Storage Providers')) @section('section', __('Settings')) @section('container', 'container-max-lg') @section('back', route('admin.settings.index')) @section('modal', __('Settings')) @section('content')
@foreach ($storageProviders as $storageProvider) @endforeach
{{ __('#') }} {{ __('Logo') }} {{ __('name') }} {{ __('Status') }} {{ __('Last Update') }}
{{ $storageProvider->id }} {{ $storageProvider->name }} @if (env('FILESYSTEM_DRIVER') == $storageProvider->symbol) ({{ __('Default') }}) @endif @if ($storageProvider->status) {{ __('Enabled') }} @else {{ __('Disabled') }} @endif {{ vDate($storageProvider->updated_at) }}
@push('styles_libs') @endpush @push('scripts_libs') @endpush @push('scripts') @endpush @endsection