@extends('backend.layouts.grid') @section('title', admin_trans('Visitors files') . ' | #' . $fileEntry->id) @section('back', route('admin.files.visitors.index')) @section('content')
{!! $fileEntry->getFileIcon('vi-4x') !!}

{{ shortertext($fileEntry->getFullName(), 50) }}

{{ $fileEntry->getFullSize() }}
  • {{ admin_trans('Preview') }} {{ admin_trans('Download') }}
    @csrf @method('DELETE')
  • {{ admin_trans('Name') }} {{ shortertext($fileEntry->getFullName(), 30) }}
  • {{ admin_trans('Shared id') }} {{ $fileEntry->sharedId() }}
  • {{ admin_trans('Size') }} {{ $fileEntry->getFullSize() }}
  • {{ admin_trans('Storage') }} @if ($fileEntry->storageProvider->isLocal()) {{ $fileEntry->storageProvider->alias }} @else {{ $fileEntry->storageProvider->alias }} @endif
  • @if ($fileEntry->ip)
  • {{ admin_trans('IP Address') }} @if (!demoMode()) @if ($fileEntry->ip) {{ $fileEntry->ip }} @else -- @endif @else {{ admin_trans('Hidden in demo') }} @endif
  • @endif @if ($fileEntry->password)
  • {{ admin_trans('Password') }} {{ demoMode() ? admin_trans('Hidden in demo') : $fileEntry->password }}
  • @endif
  • {{ admin_trans('Uploaded date') }} {{ dateFormat($fileEntry->created_at) }}
@push('styles_libs') @endpush @endsection