<?php
namespace App\Providers;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
/**
* The path to the "home" route for your application.
*
* Typically, users are redirected here after authentication.
*
* @var string
*/
public const HOME = '/';
/**
* Define your route model bindings, pattern filters, and other route configuration.
*
* @return void
*/
public function boot()
{
$this->configureRateLimiting();
$this->routes(function () {
Route::middleware('system.maintenance.api','api')
->prefix('api')
->group(base_path('routes/api.php'));
Route::middleware('web','system.maintenance')
->group(base_path('routes/web.php'));
Route::middleware(['web','auth','verification.guard','user.google.two.factor','system.maintenance'])
->group(base_path('routes/user.php'));
Route::middleware(['web', 'auth:admin', 'app.mode', 'admin.role.guard','admin.google.two.factor'])
->group(base_path('routes/admin.php'));
Route::middleware('web','system.maintenance')
->group(base_path('routes/auth.php'));
Route::middleware('web','system.maintenance')
->group(base_path('routes/global.php'));
Route::middleware('web','system.maintenance') // declare frontend routes
->group(base_path('routes/frontend.php'));
Route::middleware(['system.maintenance.api','api']) // User API Routes (v1)
->prefix('api/v1')
->group(base_path('routes/api/v1/user.php'));
Route::middleware('system.maintenance.api','api') // Auth API Routes - User/Merchant/Agent (v1)
->prefix('api/v1')
->group(base_path('routes/api/v1/auth.php'));
Route::middleware(['system.maintenance.api','api']) // User API Routes (v1)
->prefix('api/v1')
->group(base_path('routes/api/v1/global.php'));
$this->mapInstallerRoute();
});
}
/**
* Configure the rate limiters for the application.
*
* @return void
*/
protected function configureRateLimiting()
{
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip());
});
}
/**
* Configure/Place installer routes.
*
* @return void
*/
protected function mapInstallerRoute() {
if(file_exists(base_path('resources/installer/src/routes/web.php'))) {
Route::middleware('web')
->group(base_path('resources/installer/src/routes/web.php'));
}
}
}
At NFC Pay, we strive to provide a seamless and satisfactory experience with our services. This Refund Policy outlines the circumstances under which refunds may be issued for transactions made through our platform. Please read this policy carefully to understand your rights regarding refunds.
1. Eligibility for Refunds
Refunds may be considered under the following circumstances:
2. Non-Refundable Situations
Refunds will generally not be issued in the following situations:
3. Refund Process
To request a refund, please follow these steps:
4. Refund Exceptions
Certain transactions may be subject to specific terms and conditions, including non-refundable fees or charges. Please review the terms associated with each transaction carefully, as some fees may not be eligible for refunds.
5. Modifications to the Refund Policy
NFC Pay reserves the right to modify this Refund Policy at any time. Changes will be communicated through updates on our website and app, and the effective date will be updated accordingly. We encourage you to review this policy periodically to stay informed about our refund practices.
By using NFC Pay, you agree to this Refund Policy and understand the terms under which refunds may be issued. Our goal is to ensure a fair and transparent refund process, providing you with confidence and peace of mind when using our services.