forked from miguel456/rbrecruiter
Remove view file button
This commit is contained in:
parent
0bdb6cf2fb
commit
1fae91a62b
|
@ -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'
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
|
|
@ -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')
|
||||||
|
|
Loading…
Reference in New Issue