@extends('layouts.admin') @section('title', trans('app.Product File Management') . ' - ' . $product->name) @section('styles') @endsection @section('admin-content')
| {{ trans('app.File Name') }} | {{ trans('app.File Type') }} | {{ trans('app.File Size') }} | {{ trans('app.Description') }} | {{ trans('app.Download Count') }} | {{ trans('app.Status') }} | {{ trans('app.Upload Date') }} | {{ trans('app.Actions') }} |
|---|---|---|---|---|---|---|---|
| {{ $file->original_name }} | {{ $file->file_type }} | {{ $file->formatted_size }} | {{ $file->description ?? '-' }} | {{ $file->download_count }} | {{ $file->is_active ? trans('app.Active') : trans('app.Inactive') }} | {{ $file->created_at->format('Y-m-d H:i') }} |
{{ trans('app.Start by uploading the first file for this product') }}