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

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

@stop @section('js') @stop @section('content') @if(!$demoActive)
@csrf
@endif
Team files illustration
@if($demoActive)

Warning

Since many users may use the app at any given time, file uploads are disabled whilst demo mode is on.

@endif

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