shell bypass 403
@extends('backend.master')
@section('table')
{{__('subscriptions')}}
@endsection
@section('mainContent')
{!! generateBreadcrumb() !!}
<section class="admin-visitor-area up_st_admin_visitor">
<div class="container-fluid p-0">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="box_header common_table_header">
<div class="main-title d-md-flex mb-0">
<h3 class="mb-0">{{__('frontendmanage.Subscriber')}} </h3>
</div>
</div>
<div class="QA_section QA_section_heading_custom check_box_table">
<div class="QA_table">
<!-- table-responsive -->
<div class="">
<table id="lms_table" class="table Crm_table_active3">
<thead>
<tr>
<th scope="col">{{ __('common.SL') }}</th>
<th scope="col">{{ __('common.Email') }}</th>
<th scope="col">{{ __('common.Type') }}</th>
<th scope="col">{{__('frontendmanage.Subscribe At')}}</th>
<th scope="col">{{ __('common.Action') }}</th>
</tr>
</thead>
<tbody>
@foreach($subscribers as $key => $item)
<tr>
<th>{{ $key+1 }}</th>
<td>{{ @$item->email }}</td>
<td>{{ @$item->type }}</td>
<td>{{ showDate(@$item->created_at) }}</td>
<td>
<!-- shortby -->
<div class="dropdown CRM_dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button"
id="dropdownMenu2" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
{{ __('common.Select') }}
</button>
<div class="dropdown-menu dropdown-menu-right"
aria-labelledby="dropdownMenu2">
<a onclick="confirm_modal('{{route('newsletter.subscriberDelete', @$item->id)}}');"
class="dropdown-item edit_brand">{{__('common.Delete')}}</a>
</div>
</div>
<!-- shortby -->
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
@include('backend.partials.delete_modal')
@endsection
@push('scripts')
@endpush