shell bypass 403
<div id="opt-out-keywords" class="data-list-view-header">
<div class="mb-3 mt-2">
<div class="btn-group">
<a href="#" class="btn btn-success waves-light waves-effect fw-bold add_opt_out_keyword">
{{__('locale.buttons.add_new')}} <i data-feather="plus-circle"></i>
</a>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="card">
<table class="table opt-out-keywords">
<thead>
<tr>
<th>{{__('locale.labels.keyword')}} </th>
<th>{{__('locale.labels.added_at')}}</th>
<th>{{__('locale.labels.actions')}}</th>
</tr>
</thead>
<tbody>
@foreach ($opt_out_keywords as $keywords)
<tr>
<td>{{ $keywords->keyword }}</td>
<td>{{ \App\Library\Tool::formatHumanTime($keywords->created_at) }}</td>
<td>
<span class='action-delete-optout-keyword text-danger' data-id='{{$keywords->uid}}' data-bs-toggle='tooltip' data-placement='top' title='{{__('locale.buttons.delete')}}'><i data-feather="trash" class="feather-24"></i></span>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>