Remove view file button

This commit is contained in:
Miguel Nogueira 2020-12-07 18:42:56 +00:00
parent 0bdb6cf2fb
commit 1fae91a62b
Signed by untrusted user: miguel456
GPG Key ID: 2CF61B825316C6A0
2 changed files with 0 additions and 6 deletions

View File

@ -296,11 +296,6 @@ return [
'url' => 'team/files', 'url' => 'team/files',
'can' => 'teams.view' 'can' => 'teams.view'
], ],
[
'text' => 'Calendar',
'icon' => 'far fa-calendar-alt',
'url' => 'teams/calendar'
]
] ]
], ],
[ [

View File

@ -92,7 +92,6 @@
<td>{{ $file->updated_at }}</td> <td>{{ $file->updated_at }}</td>
<td> <td>
<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> <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>
<button rel="buttonTxtTooltip" data-toggle="tooltip" data-placement="top" title="View" type="button" class="btn btn-success btn-sm ml-2"><i class="fas fa-eye"></i></button>
<form style="white-space: nowrap; display: inline-block" action="{{route('deleteTeamFile', ['teamFile' => $file->id])}}" method="post"> <form style="white-space: nowrap; display: inline-block" action="{{route('deleteTeamFile', ['teamFile' => $file->id])}}" method="post">
@csrf @csrf
@method('DELETE') @method('DELETE')