@extends('admin.layouts.application') @section('title', admin_trans('Editor Files')) @section('content')
{{ admin_trans('Here you can manage the files that have been uploaded using the editor all over the website.') }}
@foreach ($files as $file) @endforeach
# {{ admin_trans('File') }} {{ admin_trans('Uploaded at') }}
{{ $file->id }}
{{ $file->path }}

{{ asset($file->path) }}

{{ dateFormat($file->created_at) }}
@endsection