@extends('layouts.simple.master') @section('title', trans(app()->getLocale() . '.file_manager')) @section('css') @endsection @section('main_content')
{{ trans(app()->getLocale() . '.total') }}: {{ $files->count() }} {{ $files->count() == 1 ? trans(app()->getLocale() . '.file') : trans(app()->getLocale() . '.files') }}, {{ count($folders) }} {{ count($folders) == 1 ? trans(app()->getLocale() . '.folder') : trans(app()->getLocale() . '.folders') }}
{{ $folderItem['name'] }}
{{ $folderItem['size'] }} MB {{ $folderItem['file_count'] }} {{ $folderItem['file_count'] == 1 ? trans(app()->getLocale() . '.file') : trans(app()->getLocale() . '.files') }}VID
{{ strtoupper($file->ext ?? 'FILE') }}
{{ Str::limit($file->name, 20) }}
{{ $sizeInMB }} MB {{ $file->created_at }}@if(!$folder) {{ trans(app()->getLocale() . '.there_are_no_folders_here') }} @else {{ trans(app()->getLocale() . '.there_are_no_files_or_folders_here') }} @endif