2020-10-11 01:54:09 +00:00
@ extends ( 'adminlte::page' )
@ section ( 'title' , config ( 'app.name' ) . ' | Team Files' )
@ section ( 'content_header' )
< h1 > {{ config ( 'app.name' )}} / Teams / Files </ h1 >
@ stop
@ section ( 'js' )
< x - global - errors ></ x - global - errors >
@ stop
@ section ( 'content' )
< x - modal id = " upload-dropzone " modal - label = " upload-dropzone-modal " modal - title = " Upload Files " include - close - button = " true " >
2020-11-02 21:44:05 +00:00
< form action = " { { route('uploadTeamFile')}} " enctype = " multipart/form-data " method = " POST " id = " newFile " >
@ csrf
< div class = " form-group " >
2020-10-11 01:54:09 +00:00
2020-11-02 21:44:05 +00:00
< label for = " caption " > Caption </ label >
< input id = " caption " type = " text " class = " form-control " name = " caption " required >
< label for = " description " > File description ( optional ) </ label >
< textarea rows = " 5 " name = " description " id = " description " class = " form-control " ></ textarea >
</ div >
2020-10-11 01:54:09 +00:00
2020-11-02 21:44:05 +00:00
< label class = " btn btn-primary " for = " file-selector " >
< input id = " file-selector " name = " file " type = " file " style = " display:none "
onchange = " $ ('#upload-file-info').html(this.files[0].name) " >
Choose File ( max {{ ini_get ( 'post_max_size' )}})
</ label >
< span class = 'label label-info' id = " upload-file-info " ></ span >
</ form >
< x - slot name = " modalFooter " >
< button onclick = " $ ('#newFile').submit() " type = " button " class = " btn btn-warning " rel = " buttonTxtTooltip " title = " Upload chosen file " data - placement = " top " >< i class = " fas fa-upload " ></ i ></ button >
2020-10-11 01:54:09 +00:00
</ x - slot >
</ x - modal >
< div class = " row " >
< div class = " col-3 offset-3 " >
< img src = " /img/files.svg " width = " 230px " height = " 230px " alt = " Team files illustration " >
</ div >
</ div >
< div class = " row " >
< div class = " col " >
< div class = " card bg-gray-dark " >
< div class = " card-header bg-indigo " >
< div class = " card-title " >< h4 class = " text-bold " > Team Files < span class = " badge badge-warning " >< i class = " fas fa-check-circle " ></ i > {{ ( Auth :: user () -> currentTeam ) ? Auth :: user () -> currentTeam -> name : '(No team)' }} </ span ></ h4 ></ div >
</ div >
< div class = " card-body " >
@ if ( ! $files -> isEmpty ())
< table class = " table table-active table-borderless " style = " white-space: nowrap " >
< thead >
< tr >
< th > #</th>
< th > File name </ th >
< th > Caption </ th >
< th > Size </ th >
< th > Last updated </ th >
< th > Actions </ th >
</ tr >
</ thead >
< tbody >
@ foreach ( $files as $file )
< tr >
< td > {{ $file -> id }} </ td >
< td > {{ Str :: of ( $file -> name ) -> limit ( 10 , '(..).' . $file -> extension ) }} </ td >
< td > {{ Str :: of ( $file -> caption ) -> limit ( 10 ) }} </ td >
2020-11-02 21:44:05 +00:00
< td > {{ $file -> size }} </ td >
2020-10-11 01:54:09 +00:00
< td > {{ $file -> updated_at }} </ td >
< td >
2020-11-02 21:44:05 +00:00
< button rel = " buttonTxtTooltip " data - toggle = " tooltip " data - placement = " top " title = " Download " type = " button " class = " btn btn-success btn-sm ml-2 " onclick = " window.location=' { { route('downloadTeamFile', ['teamFile' => $file->id ])}}' " >< i class = " fas fa-download " ></ i ></ button >
< form style = " white-space: nowrap; display: inline-block " action = " { { route('deleteTeamFile', ['teamFile' => $file->id ])}} " method = " post " >
@ csrf
@ method ( 'DELETE' )
< button type = " submit " rel = " buttonTxtTooltip " data - toggle = " tooltip " data - placement = " top " title = " Deleting a file is irreversible! " class = " btn btn-danger btn-sm ml-2 " >< i class = " fas fa-trash " ></ i ></ button >
</ form >
2020-10-11 01:54:09 +00:00
</ td >
</ tr >
@ endforeach
</ tbody >
</ table >
@ else
< div class = " alert alert-warning " >
< span class = " text-bold " >< i class = " fas fa-exclamation-triangle " ></ i > There are currently no team files . Try uploading some to get started .</ span >
</ div >
@ endif
</ div >
< div class = " card-footer text-center " >
2020-11-03 03:00:03 +00:00
< button type = " button " class = " btn btn-warning ml-3 " onclick = " $ ('#upload-dropzone').modal('show') " >< i class = " fas fa-upload " ></ i > Upload Files </ button >
< button type = " button " class = " btn btn-success ml-3 " onclick = " window.location.href=' { { route('teams.index')}}' " >< i class = " fas fa-arrow-circle-left " ></ i > Back </ button >
2020-10-11 01:54:09 +00:00
{{ $files -> links () }}
</ div >
</ div >
</ div >
</ div >
@ stop
@ section ( 'footer' )
@ include ( 'breadcrumbs.dashboard.footer' )
@ stop