home
/
u941026986
/
domains
/
alda.paratune.com
/
public_html
/
routes.9857
➕ New
📤 Upload
✎ Editing:
api.php
← Back
<?php use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; use App\Http\Controllers\APIController; use App\Http\Controllers\APIAuthController; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServiceProvider and all of them will | be assigned to the "api" middleware group. Make something great! | */ // Route::middleware('auth:sanctum')->get('/user', function (Request $request) { // return $request->user(); // }); Route::post('app_login_register', [APIController::class, 'app_login_register']); Route::post('app_admin_login', [APIController::class, 'app_admin_login']); Route::post('app_forgot_password', [APIController::class, 'app_forgot_password']); Route::post('app_add_product', [APIAuthController::class, 'app_add_product']); Route::post('app_edit_product', [APIAuthController::class, 'app_edit_product']); Route::post('app_delete_product', [APIAuthController::class, 'app_delete_product']); Route::post('app_get_product', [APIAuthController::class, 'app_get_product']); Route::post('app_admin_join', [APIController::class, 'app_admin_join']); Route::post('app_update_profile', [APIAuthController::class, 'app_update_profile']); Route::post('app_mark_favorite', [APIAuthController::class, 'app_mark_favorite']); Route::post('app_get_favorite_stations_list', [APIAuthController::class, 'app_get_favorite_stations_list']); Route::post('app_get_stations_list', [APIController::class, 'app_get_stations_list']); Route::post('app_get_stations_list_profile', [APIAuthController::class, 'app_get_stations_list_profile']); Route::post('app_get_station_details', [APIAuthController::class, 'app_get_station_details']); Route::post('app_delete_account', [APIAuthController::class, 'app_delete_account']); Route::post('app_add_refill', [APIAuthController::class, 'app_add_refill']); Route::post('app_edit_refill', [APIAuthController::class, 'app_edit_refill']); Route::post('app_delete_refill', [APIAuthController::class, 'app_delete_refill']); Route::post('app_get_refill', [APIAuthController::class, 'app_get_refill']); Route::post('app_checkout_refill', [APIAuthController::class, 'app_checkout_refill']); Route::post('app_add_to_cart', [APIAuthController::class, 'app_add_to_cart']); Route::post('app_product_checkout', [APIAuthController::class, 'app_product_checkout']); Route::post('app_order_refill', [APIAuthController::class, 'app_order_refill']); Route::post('app_order_refill_delete', [APIAuthController::class, 'app_order_refill_delete']);
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel