@extends('layouts.admin') @section('title', trans('app.Product File Management') . ' - ' . $product->name) @section('styles') @endsection @section('admin-content')

{{ trans('app.Product File Management') }}: {{ $product->name }}

{{ trans('app.Product Files') }} ({{ $files->count() }})
@if($files->count() > 0)
@foreach($files as $file) @endforeach
{{ 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') }}
@else
{{ trans('app.No files uploaded') }}

{{ trans('app.Start by uploading the first file for this product') }}

@endif
@endsection @section('scripts') @endsection