@extends('adminlte::page') @section('title', config('app.name') . ' | Team Files') @section('content_header')

{{config('app.name')}} / Teams / Files

@stop @section('js') @stop @section('content')
@csrf
Team files illustration

Team Files {{ (Auth::user()->currentTeam) ? Auth::user()->currentTeam->name : '(No team)' }}

@if(!$files->isEmpty()) @foreach($files as $file) @endforeach
# File name Caption Size Last updated Actions
{{$file->id}} {{ Str::of($file->name)->limit(10, '(..).' . $file->extension) }} {{ Str::of($file->caption)->limit(10) }} {{ $file->size }} {{ $file->updated_at }}
@csrf @method('DELETE')
@else
There are currently no team files. Try uploading some to get started.
@endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop