shell bypass 403
<table class="table table-striped table-bordered zero-configuration">
<thead>
<tr>
<th>#</th>
<th>{{ trans('labels.image') }}</th>
<th>{{ trans('labels.title') }}</th>
<th>{{ trans('labels.description') }}</th>
<th>{{ trans('labels.created_date') }}</th>
<th>{{ trans('labels.updated_date') }}</th>
<th>{{ trans('labels.action') }}</th>
</tr>
</thead>
<tbody>
@php $i = 1; @endphp
@foreach ($gettutorials as $tutorial)
<tr id="dataid{{ $tutorial->id }}">
<td>@php echo $i++; @endphp</td>
<td><img src='{{ helper::image_path($tutorial->image) }}' class='img-fluid rounded h-50px'></td>
<td>{{ $tutorial->title }}</td>
<td>{{ $tutorial->description }}</td>
<td>{{ helper::date_format($tutorial->created_at) }}<br>
{{ helper::date_time_format($tutorial->created_at) }}
</td>
<td>{{ helper::date_format($tutorial->updated_at) }}<br>
{{ helper::date_time_format($tutorial->updated_at) }}
</td>
<td>
<div class="d-flex flex-wrap gap-1">
<a tooltip="{{ trans('labels.edit') }}"
class="btn btn-sm btn-info square {{ Auth::user()->type == 4 ? (helper::check_access('role_tutorial', Auth::user()->role_id, 'edit') == 1 ? '' : 'd-none') : '' }}"
href="{{ URL::to('admin/tutorial-' . $tutorial->id) }}">
<i class="fa-solid fa-pen-to-square"></i></a>
<a tooltip="{{ trans('labels.delete') }}"
class="btn btn-sm btn-danger square {{ Auth::user()->type == 4 ? (helper::check_access('role_tutorial', Auth::user()->role_id, 'delete') == 1 ? '' : 'd-none') : '' }}"
@if (env('Environment') == 'sendbox') onclick="myFunction()" @else onclick="Delete('{{ $tutorial->id }}','{{ URL::to('admin/tutorial/delete') }}')" @endif>
<i class="fa fa-trash"></i></a>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>