24 lines
799 B
PHP
24 lines
799 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\{CheckoutController,ProductController};
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register API routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| is assigned the "api" middleware group. Enjoy building your API!
|
|
|
|
|
*/
|
|
|
|
// Wholesaler API calls
|
|
Route::group(['middleware'=>['auth:api','role:wholesaler']], function() {
|
|
Route::get('a/supplier_products',[ProductController::class,'api_supplier_products']);
|
|
});
|
|
|
|
Route::group(['middleware'=>'auth:api'], function() {
|
|
Route::post('/u/checkout/fee/{o}',[CheckoutController::class,'fee'])
|
|
->where('o','[0-9]+');
|
|
}); |