shell bypass 403
<div :wire:key="student-list">
<style>
.QA_section.check_box_table .QA_table .table thead tr th:first-child, .QA_table .table tbody td:first-child {
padding-left: 25px !important;
}
.QA_section.check_box_table .QA_table .table thead tr th {
padding-left: 12px !important;
}
.QA_section .QA_table .table thead th {
vertical-align: middle !important;
}
</style>
<div>
<div
@if (is_numeric($refresh))
wire:poll.{{ $refresh }}ms
@elseif(is_string($refresh))
@if ($refresh === '.keep-alive' || $refresh === 'keep-alive')
wire:poll.keep-alive
@elseif($refresh === '.visible' || $refresh === 'visible')
wire:poll.visible
@else
wire:poll="{{ $refresh }}"
@endif
@endif
class="container-fluid p-0"
>
<div class="d-md-flex justify-content-between mb-3">
<div class="d-md-flex">
<div>
@include('livewire.partials.org_position_select',compact('positions'))
</div>
</div>
<div class="d-md-flex">
<div>
@include('livewire-tables::bootstrap-4.includes.column-select')
</div>
</div>
<div class="d-md-flex">
<div>
@include('livewire.partials.search')
</div>
</div>
</div>
@include('livewire-tables::bootstrap-4.includes.table')
@include('livewire-tables::bootstrap-4.includes.pagination')
@if($this->selectedRowsQuery->count()!=0)
@foreach($this->selectedRowsQuery->get() as $row)
<input type="hidden" name="user_ids[]" value="{{$row->id}}">
@endforeach
@endif
</div>
</div>
</div>