@extends('admin.master_layout')
@section('title')
{{__('admin.Manage Kyc Type')}}
@endsection
@section('admin-content')
{{__('admin.Add New')}}
| {{__('admin.SN')}} |
{{__('admin.Name')}} |
{{__('admin.Status')}} |
{{__('admin.Action')}} |
@foreach ($kycType as $index => $type)
| {{ ++$index }} |
{{ $type->name }} |
@if ($type->status == 1)
{{__('admin.Active')}}
@else
{{__('admin.Inactive')}}
@endif
|
|
@endforeach
@foreach ($kycType as $index => $ktype)
@endforeach
@endsection