<?php
$app_local = get_default_language_code();
?>
<?php $__env->startSection('page-title'); ?>
<?php echo $__env->make('admin.components.page-title',['title' => __($page_title)], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('breadcrumb'); ?>
<?php echo $__env->make('admin.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("admin.dashboard"),
]
], 'active' => __("Useful Links")], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="table-area">
<div class="table-wrapper">
<div class="table-header">
<h5 class="title"><?php echo e(__($page_title)); ?></h5>
<?php echo $__env->make('admin.components.link.add-default',[
'text' => __("Add Link"),
'href' => "#link-add",
'class' => "modal-btn",
'permission' => "admin.useful.links.store",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="table-responsive">
<table class="custom-table">
<thead>
<tr>
<th><?php echo e(__("Title")); ?></th>
<th><?php echo e(__("Slug")); ?></th>
<th><?php echo e(__("Status")); ?></th>
<th></th>
</tr>
</thead>
<tbody>
<?php $__empty_1 = true; $__currentLoopData = $useful_links ?? []; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
<tr data-item="<?php echo e(json_encode($item->only(['id']))); ?>">
<td><?php echo e($item->title->language?->$app_local?->title ?? ""); ?></td>
<td><?php echo e($item->slug ?? ""); ?></td>
<td>
<?php echo $__env->make('admin.components.form.switcher',[
'name' => 'status',
'value' => $item->status,
'options' => [__('Enable') => 1,__('Disable') => 0],
'onload' => true,
'data_target' => $item->id,
'permission' => "admin.useful.links.status.update",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</td>
<td>
<?php echo $__env->make('admin.components.link.edit-default',[
'href' => setRoute('admin.useful.links.edit',$item->slug),
'class' => "edit-modal-button",
'permission' => "admin.useful.links.edit",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php if($item->editable == true): ?>
<?php echo $__env->make('admin.components.link.delete-default',[
'href' => "javascript:void(0)",
'class' => "delete-modal-button",
'permission' => "admin.useful.links.delete",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
<?php echo $__env->make('admin.components.alerts.empty',['colspan' => 4], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
</tbody>
</table>
</div>
</div>
</div>
<?php if(admin_permission_by_name("admin.useful.links.store")): ?>
<div id="link-add" class="mfp-hide large">
<div class="modal-data">
<div class="modal-header px-0">
<h5 class="modal-title"><?php echo e(__("Add Link")); ?></h5>
</div>
<div class="modal-form-data">
<form class="modal-form" method="POST" action="<?php echo e(setRoute('admin.useful.links.store')); ?>" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="row mb-10-none">
<div class="language-tab">
<nav>
<div class="nav nav-tabs" id="nav-tab" role="tablist">
<?php $__currentLoopData = $languages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<button class="nav-link <?php if(get_default_language_code() == $item->code): ?> active <?php endif; ?>" id="modal-<?php echo e($item->name); ?>-tab" data-bs-toggle="tab" data-bs-target="#modal-<?php echo e($item->name); ?>" type="button" role="tab" aria-controls="modal-<?php echo e($item->name); ?>" aria-selected="true"><?php echo e($item->name); ?></button>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<?php $__currentLoopData = $languages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php
$lang_code = $item->code;
?>
<div class="tab-pane <?php if(get_default_language_code() == $item->code): ?> fade show active <?php endif; ?>" id="modal-<?php echo e($item->name); ?>" role="tabpanel" aria-labelledby="modal-<?php echo e($item->name); ?>-tab">
<div class="form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Title")."*",
'name' => $lang_code . "_title",
'placeholder' => __("Title")."...",
'value' => old($lang_code . "_title")
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="form-group">
<?php echo $__env->make('admin.components.form.input-text-rich',[
'label' => __("Content"),
'name' => $lang_code . "_content",
'placeholder' => __("Content")."...",
'value' => old($lang_code . "_content"),
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
<div class="col-xl-12 col-lg-12 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Slug")."*".'('.__("Use for make page link (URL)").')',
'name' => "slug",
'placeholder' => __("Slug")."...",
'value' => old("slug"),
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-12 col-lg-12 form-group d-flex align-items-center justify-content-between mt-4">
<button type="button" class="btn btn--danger modal-close"><?php echo e(__("Close")); ?></button>
<button type="submit" class="btn btn--base"><?php echo e(__("Add")); ?></button>
</div>
</div>
</form>
</div>
</div>
</div>
<?php endif; ?>
<?php $__env->stopSection(); ?>
<?php $__env->startPush('script'); ?>
<script>
$(document).ready(function(){
openModalWhenError('link-add','#link-add');
});
// Switcher
switcherAjax("<?php echo e(setRoute('admin.useful.links.status.update')); ?>");
$(".delete-modal-button").click(function(){
var oldData = JSON.parse($(this).parents("tr").attr("data-item"));
var actionRoute = "<?php echo e(setRoute('admin.useful.links.delete')); ?>";
var target = oldData.id;
var message = `<?php echo e(__("Are you sure to delete this link?")); ?>`;
openDeleteModal(actionRoute,target,message);
});
</script>
<?php $__env->stopPush(); ?>
<?php echo $__env->make('admin.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/kueuepay/public_html/resources/views/admin/sections/useful-links/index.blade.php ENDPATH**/ ?>
Initiates a new payment transaction.
create-order
| Parameter | Type | Details |
|---|---|---|
| amount | decimal | Your Amount , Must be rounded at 2 precision. |
| currency | string | Currency Code, Must be in Upper Case (Alpha-3 code) |
| success_url | string | Enter your return or success URL |
| cancel_url | string (optional) | Enter your cancel or failed URL |
Request Example (guzzle)
<?php
require_once('vendor/autoload.php');
$client = new \GuzzleHttp\Client();
$response = $client->request('POST', $base_url.'create-order', [
'headers' => [
'Authorization' => 'Bearer '. $authorizationToken,
'accept' => 'application/json',
'content-type' => 'application/json',
],
'form_params' => [
'amount' => '$amount',
'currency' => 'currency',
'success_url' => 'success_url',
'cancel_url' => 'cancel_url',
],
]);
echo $response->getBody();
**Response: SUCCESS (200 OK)**
{
"message": {
"success": [
"Order created successfully."
]
},
"data": {
"redirect_url":"https://example.com/login/OISADFDFSDFSF",
"order_details":{
"amount" : "10",
"fixed_charge" : 2,
"percent_charge" : 1,
"total_charge" : 3,
"total_payable" : 13,
"currency" : "USD",
"expiry_time": "2024-04-25T06:48:35.984285Z",
"success_url": "http://127.0.0.1/nfcpay/user/transaction/success",
"cancel_url": "http://127.0.0.1/nfcpay/user/transaction/cancel"
}
},
"type": "success"
}
**Response: ERROR (400 FAILED)**
{
"message": {
"error": [
"Invalid token."
]
},
"data": null,
"type": "error"
}