@if(config('visibility.files_col_checkboxes'))
|
|
@endif
@if($file->file_type == 'image')
@else
@endif
|
{{ str_limit($file->file_filename ?? '---', 25) }}
|
{{ $file->first_name ?? runtimeUnkownUser() }}
|
{{ $file->file_size }} |
{{ runtimeDate($file->file_created) }}
|
@if(count($file->tags ?? []) > 0)
@foreach($file->tags->take(1) as $tag)
{{ str_limit($tag->tag_title, 15) }}
@endforeach
@else
---
@endif
@if(count($file->tags ?? []) > 1)
@php $tags = $file->tags; @endphp
@include('misc.more-tags')
@endif
|
@if(config('visibility.files_col_visibility'))
@endif
@if(config('visibility.set_image_as_project_cover'))
@if($file->file_type == 'image')
@else
@endif
@endif
@if(auth()->user()->is_team)
@endif
@if($file->permission_delete_file)
@else
@endif
@if($file->permission_edit_file)
@endif
|
@endforeach