2017-11-03 05:26:07 +00:00
|
|
|
<?php
|
|
|
|
|
2018-04-10 11:23:13 +00:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
2017-11-03 05:26:07 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| API Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2018-04-10 11:23:13 +00:00
|
|
|
| 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!
|
2017-11-03 05:26:07 +00:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-04-10 11:23:13 +00:00
|
|
|
/*
|
|
|
|
Route::middleware('auth:api')->get('/user', function (Request $request) {
|
|
|
|
return $request->user();
|
2017-11-03 05:26:07 +00:00
|
|
|
});
|
2018-04-10 11:23:13 +00:00
|
|
|
*/
|
2018-06-05 11:13:57 +00:00
|
|
|
|
2018-07-17 04:10:40 +00:00
|
|
|
Route::group(['middleware'=>['auth:api','reseller']], function() {
|
|
|
|
Route::get('/r/agents','ResellerServicesController@agents');
|
|
|
|
Route::get('/r/accounts','ResellerServicesController@accounts');
|
|
|
|
});
|
|
|
|
|
2018-06-05 11:13:57 +00:00
|
|
|
Route::group(['middleware'=>'auth:api'], function() {
|
2018-06-19 12:31:49 +00:00
|
|
|
Route::get('/u/invoices','UserServicesController@invoices');
|
|
|
|
Route::get('/u/payments','UserServicesController@payments');
|
2018-06-05 11:13:57 +00:00
|
|
|
Route::get('/u/services','UserServicesController@services');
|
|
|
|
});
|