@extends('admin.layout.header') @section('title') Danh sách file map người dùng @endsection @section('content')
Danh sách file map người dùng
@foreach($files as $file) @endforeach
ID User Tên file Loại Dung lượng Download
{{ $file->id }} {{ $file->user->name }} {{ $file->file_name }} {{ $file->type }} @php $size = $file->file_size; if ($size > 1048576) { echo round($size / 1048576, 2) . ' MB'; } else { echo round($size / 1024, 2) . ' KB'; } @endphp Download
@endsection