<!-- notify js -->
<script src='<?php echo e(asset('public/backend/js/bootstrap-notify.js')); ?>'></script>
<script>
// Show Laravel Error Messages----------------------------------------------
$(function () {
$(document).ready(function(){
<?php if(session('error')): ?>
<?php if(is_array(session('error'))): ?>
<?php $__currentLoopData = session('error'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
$.notify(
{
title: "",
message: "<?php echo e(__($item)); ?>",
icon: 'las la-exclamation-triangle',
},
{
type: "danger",
allow_dismiss: true,
delay: 5000,
placement: {
from: "top",
align: "right"
},
}
);
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
<?php elseif(session('success')): ?>
<?php if(is_array(session('success'))): ?>
<?php $__currentLoopData = session('success'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
$.notify(
{
title: "",
class:"text-break",
message: "<?php echo e(__($item)); ?>",
icon: 'las la-check-circle',
},
{
type: "success",
allow_dismiss: true,
delay: 5000,
placement: {
from: "top",
align: "right"
},
}
);
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
<?php elseif(session('warning')): ?>
<?php if(is_array(session('warning'))): ?>
<?php $__currentLoopData = session('warning'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
$.notify(
{
title: "",
message: "<?php echo e(__($item)); ?>",
icon: 'las la-exclamation-triangle',
},
{
type: "warning",
allow_dismiss: true,
delay: 5000,
placement: {
from: "top",
align: "right"
},
}
);
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
<?php elseif($errors->any()): ?>
<?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
$.notify(
{
title: "",
message: "<?php echo e(__($item)); ?>",
icon: 'las la-exclamation-triangle',
},
{
type: "danger",
allow_dismiss: true,
delay: 5000,
placement: {
from: "top",
align: "right"
},
}
);
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
});
});
//--------------------------------------------------------------------------
// Function for throw error messages from javascript------------------------
function throwMessage(type,errors = []) {
if(type == 'error') {
$.each(errors,function(index,item) {
$.notify(
{
title: "",
message: item,
icon: 'las la-exclamation-triangle',
},
{
type: "danger",
allow_dismiss: true,
delay: 5000,
placement: {
from: "top",
align: "right"
},
}
);
});
}else if(type == 'success') {
$.each(errors,function(index,item) {
$.notify(
{
title: "",
message: item,
icon: 'las la-check-circle',
},
{
type: "success",
allow_dismiss: true,
delay: 5000,
placement: {
from: "top",
align: "right"
},
}
);
});
}else if(type == 'warning') {
$.each(errors,function(index,item) {
$.notify(
{
title: "",
message: item,
icon: 'las la-check-circle',
},
{
type: "warning",
allow_dismiss: true,
delay: 5000,
placement: {
from: "top",
align: "right"
},
}
);
});
}
}
//--------------------------------------------------------------------------
// Function for set modal session value --------------------
var validationSession = null;
function getSessionValue(sesesionValue = null) {
validationSession = sessionValue;
}
<?php if(session('modal')): ?>
var sessionValue = "<?php echo e(session('modal')); ?>";
getSessionValue(sessionValue);
<?php endif; ?>
// Function for open modal/popup when have backend session
function openModalWhenError(sessionValue,modalSelector) {
if(validationSession != sessionValue) {
return false;
}
openModalBySelector(modalSelector);
}
//----------------------------------------------------------
function countrySelect(element,errorElement) {
$(document).on("change",element,function(){
var targetElement = $(this);
var countryId = $(element+" :selected").attr("data-id");
if(countryId != "" || countryId != null) {
var CSRF = $("meta[name=csrf-token]").attr("content");
var data = {
_token : CSRF,
country_id : countryId,
};
$.post("<?php echo e(setRoute('global.country.states')); ?>",data,function() {
// success
$(errorElement).removeClass("is-invalid");
$(targetElement).siblings(".invalid-feedback").remove();
}).done(function(response){
// Place States to States Field
var options = "<option selected disabled>Select State</option>";
$.each(response,function(index,item) {
options += `<option value="${item.name}" data-id="${item.id}">${item.name}</option>`;
});
$(".state-select").html(options);
}).fail(function(response) {
if(response.status == 422) { // Validation Error
var faildMessage = "Please select a valid Country.";
var faildElement = `<span class="invalid-feedback" role="alert">
<strong>${faildMessage}</strong>
</span>`;
$(errorElement).addClass("is-invalid");
if($(targetElement).siblings(".invalid-feedback").length != 0) {
$(targetElement).siblings(".invalid-feedback").text(faildMessage);
}else {
errorElement.after(faildElement);
}
}else {
var faildMessage = "Something went wrong! Please try again.";
var faildElement = `<span class="invalid-feedback" role="alert">
<strong>${faildMessage}</strong>
</span>`;
$(errorElement).addClass("is-invalid");
if($(targetElement).siblings(".invalid-feedback").length != 0) {
$(targetElement).siblings(".invalid-feedback").text(faildMessage);
}else {
errorElement.after(faildElement);
}
}
});
}else {
// Push Error
}
});
}
// State Select Get Cities
function stateSelect(element,errorElement) {
$(document).on("change",element,function(){
var targetElement = $(this);
var stateId = $(element+" :selected").attr("data-id");
if(stateId != "" || stateId != null) {
var CSRF = $("meta[name=csrf-token]").attr("content");
var data = {
_token : CSRF,
state_id : stateId,
};
$.post("<?php echo e(setRoute('global.country.cities')); ?>",data,function() {
// success
$(errorElement).removeClass("is-invalid");
$(targetElement).siblings(".invalid-feedback").remove();
}).done(function(response){
// Place States to States Field
var options = "<option selected disabled>Select City</option>";
$.each(response,function(index,item) {
options += `<option value="${item.name}" data-id="${item.id}">${item.name}</option>`;
});
$(".city-select").html(options);
}).fail(function(response) {
if(response.status == 422) { // Validation Error
var faildMessage = "Please select a valid state.";
var faildElement = `<span class="invalid-feedback" role="alert">
<strong>${faildMessage}</strong>
</span>`;
$(errorElement).addClass("is-invalid");
if($(targetElement).siblings(".invalid-feedback").length != 0) {
$(targetElement).siblings(".invalid-feedback").text(faildMessage);
}else {
errorElement.after(faildElement);
}
}else {
var faildMessage = "Something went wrong! Please try again.";
var faildElement = `<span class="invalid-feedback" role="alert">
<strong>${faildMessage}</strong>
</span>`;
$(errorElement).addClass("is-invalid");
if($(targetElement).siblings(".invalid-feedback").length != 0) {
$(targetElement).siblings(".invalid-feedback").text(faildMessage);
}else {
errorElement.after(faildElement);
}
}
});
}else {
// Push Error
}
});
}
</script><?php /**PATH D:\xampp\htdocs\git\nfcpay\resources\views/admin/partials/notify.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"
}