@extends('dashboard.layouts.app') @section('title', trans('admin.files.title'). ' - ') @section('speedbar')
@endsection @section('content')
@can('create', 'files')
@csrf
@endcan
@if(count($files) == 0) @endif @foreach($files as $file) @endforeach
ID @lang('admin.brands.image') @lang('admin.brands.name') @lang('admin.files.path') @lang('admin.files.size') @lang('admin.actions')
@lang('admin.no_data')
{{ $file->id }} {{ $file->getName() }} {{ $file->getPath() }} {{ round($file->getSize() / 1024) }} kbayt @can('delete', 'files') @endcan
{{ $files->links('pagination::bootstrap-4') }}
@endsection