@extends('admin.layouts.master')
@push('css')
@endpush
@section('page-title')
@include('admin.components.page-title',['title' => __($page_title)])
@endsection
@section('breadcrumb')
@include('admin.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("admin.dashboard"),
]
], 'active' => __("Setup KYC")])
@endsection
@section('content')
<div class="table-area">
<div class="table-wrapper">
<div class="table-header">
<h5 class="title">{{ __("Setup KYC") }}</h5>
</div>
<div class="table-responsive">
<table class="custom-table two">
<thead>
<tr>
<th>{{ __("Type") }}</th>
<th>{{ __("Status") }}</th>
<th></th>
</tr>
</thead>
<tbody>
@forelse ($kycs as $item)
<tr>
<td>{{ ucwords($item->slug) }}</td>
<td>
@include('admin.components.form.switcher',[
'label' => false,
'name' => 'status',
'options' => [__('Active') => 1 , __('Deactive') => 0],
'onload' => true,
'value' => $item->status,
'data_target' => $item->id,
'permission' => "admin.setup.kyc.status.update",
])
</td>
<td>
@include('admin.components.link.edit-default',[
'href' => setRoute('admin.setup.kyc.edit',$item->slug),
'permission' => "admin.setup.kyc.edit",
])
</td>
</tr>
@empty
@include('admin.components.alerts.empty',['colspan' => 3])
@endforelse
</tbody>
</table>
</div>
</div>
</div>
@endsection
@push('script')
<script>
switcherAjax("{{ route('admin.setup.kyc.status.update') }}");
</script>
@endpush
Contact Section
We’d love to hear from you! Whether you have questions, feedback, or need support, our team is here to help. Reach out to us via email, phone, or visit our office. We’re committed to providing you with exceptional service and ensuring your experience with NFC Pay is seamless and satisfying. Let’s connect!