<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use App\Models\Admin\SetupKyc;
use Exception;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Auth;
use App\Http\Helpers\Response;
class SetupKycController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$page_title = "Setup KYC";
$kycs = SetupKyc::orderByDesc('id')->get();
return view('admin.sections.setup-kyc.index',compact(
'page_title',
'kycs',
));
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($slug)
{
$page_title = "KYC Data Form";
$kyc = SetupKyc::where('slug',$slug)->firstOrfail();
return view('admin.sections.setup-kyc.edit',compact(
'page_title',
'kyc',
));
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $slug)
{
// find kyc
$find = Validator::make(['slug' => $slug],[
'slug' => 'required|string|exists:setup_kycs',
],[
'slug' => "Invalid KYC Or KYC not found!",
])->validate();
// Form Data Validate
$validator = Validator::make($request->all(),[
'label' => 'nullable|array',
'label.*' => 'nullable|string|max:50',
'input_type' => 'nullable|array',
'input_type.*' => 'nullable|string|max:20',
'min_char' => 'nullable|array',
'min_char.*' => 'nullable|numeric',
'max_char' => 'nullable|array',
'max_char.*' => 'nullable|numeric',
'field_necessity' => 'nullable|array',
'field_necessity.*' => 'nullable|string|max:20',
'file_extensions' => 'nullable|array',
'file_extensions.*' => 'nullable|string|max:255',
'file_max_size' => 'nullable|array',
'file_max_size.*' => 'nullable|numeric',
'select_options' => 'nullable|array',
'select_options.*' => 'nullable|string|max:60',
]);
$validated = $validator->validate();
$validated['fields'] = decorate_input_fields($validated);
$validated = Arr::except($validated,['label','input_type','min_char','max_char','field_necessity','file_extensions','file_max_size','select_options']);
$validated['last_edit_by'] = Auth::user()->id;
try{
SetupKyc::where('slug',$slug)->update($validated);
}catch(Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Information updated successfully!']]);
}
/**
* Function for update KYC status
* @param \Illuminate\Http\Request $request
*/
public function statusUpdate(Request $request) {
$validator = Validator::make($request->all(),[
'data_target' => 'required|numeric',
'status' => 'required|integer',
]);
if($validator->stopOnFirstFailure()->fails()) {
return Response::error($validator->errors());
}
$validated = $validator->validate();
$status = [
0 => true,
1 => false,
];
// find terget Item
$kyc = SetupKyc::find($validated['data_target']);
if(!$kyc) {
$error = ['error' => ['Invalid KYC or KYC not found!']];
return Response::error($error,null,404);
}
try{
$kyc->update([
'status' => $status[$validated['status']],
]);
}catch(Exception $e) {
$error = ['error' => ['Something went worng! Please try again.']];
return Response::error($error,null,500);
}
$success = ['success' => [__('KYC status updated successfully!')]];
return Response::success($success);
}
}
Get access token to initiates payment transaction.
generate-token
| Parameter | Type | Comments |
|---|---|---|
| client_id | string | Enter merchant API client/primary key |
| secret_id | string | Enter merchant API secret key |
| env | string | Enter merchant API environment |
| merchant_id | string | Enter merchant API merchant id |
Request Example (guzzle)
<?php
require_once('vendor/autoload.php');
$client = new \GuzzleHttp\Client();
$response = $client->request('POST', $base_url. 'v1/generate-token', [
'headers' => [
'accept' => 'application/json',
'content-type' => 'application/json',
],
'form_params' => [
'client_id' => '$client_id',
'secret_id' => 'secret_id',
'env' => 'env',
'merchant_id' => 'merchant_id',
],
]);
echo $response->getBody();
**Response: SUCCESS (200 OK)**
{
"message": {
"success": [
"Successfully token is generated"
]
},
"data": {
"token":"eyJpdiI6InpkczhjTjhQdVhUL2lKQ0pSUUx6aUE9PSIsInZhbHVlIjoiVGVBTVBDTXltbjNZcEIvdEJveGpTSno3TU5NRUtnVkhCZ1pHTFNCUnZGQ2UxMnYxN202cEE1YVRDTEFsc0ZERExoTjdtL0dTL2xoU3QzeUJJOExiMUx5T0w1L0llUXhTUkU1cWVLWEdEbEplb0dKNXcwbTNRM0VxdkUwYzZuNFdtNkhMQ0pRZysyNWkvdzBxSlBoSVBSOGFTekNnR2RXNHVtcG9lMGZOTmNCcm1hR3c5Sk9KTnB4Y3ltZDl6cm90MThrR21Ca3B1azc3bXRiQ0J6SW96UVo1elNkU1ZqeE05bTcwWGp1MEUxWlJFdnNWTmpSbnVpeW92b2U4dXZkUGgyb1VmK0luaGdyaFlsVTZlcVpVRnZlTG1DeFF6Ykk2T2h6Z3JzbnIyNHpNdHowSE5JdDR0Y0pZT20zUm1XYW8iLCJtYWMiOiJlY2M4NGE1OGUzYzkzYzk0YzljNmVmNjE0YWI0ZDIwOGI3NDQ2YWEyY2ZhNzc0NzE4ZmY1ZmYyMz
IyZmQzNDY1IiwidGFnIjoiIn0=",
},
"type": "success"
}
**Response: ERROR (400 FAILED)**
{
"message": {
"error": [
"Invalid credentials."
]
},
"data": null,
"type": "error"
}