<?php
use App\Http\Controllers\GlobalController;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\FileController;
use Illuminate\Support\Facades\File;
Route::controller(GlobalController::class)->prefix('global')->name('global.')->group(function(){
Route::post('get-states','getStates')->name('country.states');
Route::post('get-cities','getCities')->name('country.cities');
Route::post('get-countries','getCountries')->name('countries');
Route::post('get-timezones','getTimezones')->name('timezones');
Route::post('set-cookie','setCookie')->name('set.cookie');
});
Route::post('languages/switch',[GlobalController::class,'languageSwitch'])->name('frontend.languages.switch');
// FileHolder Routes
Route::post('fileholder-upload',[FileController::class,'storeFile'])->name('fileholder.upload');
Route::post('fileholder-remove',[FileController::class,'removeFile'])->name('fileholder.remove');
Route::get("file/download/{path_source}/{name}",function($path_source,$file_name) {
$file_link = get_files_path($path_source) . "/" . $file_name;
if(File::exists($file_link)) return response()->download($file_link);
return back()->with(['error' => ['File doesn\'t exists']]);
})->name('file.download');
Payment Accept
Our platform simplifies payment acceptance, making transaction management effortless. With secure processing and user-friendly tools, you can easily handle payments from credit cards, debit cards, and digital methods. Our intuitive interface is designed for efficiency, ensuring a seamless experience for both you and your customers. Manage your transactions with ease and confidence.