Payone, Shop, wizard
This commit is contained in:
parent
446bc4561b
commit
044a6bf253
28 changed files with 996 additions and 814 deletions
|
|
@ -13,6 +13,17 @@ use Illuminate\Http\Request;
|
|||
|
|
||||
*/
|
||||
|
||||
Route::middleware('auth:api')->get('/user', function (Request $request) {
|
||||
return $request->user();
|
||||
//Route::post('login', 'API\UserController@login');
|
||||
//Route::post('register', 'API\UserController@register');
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Route::get('/payment/status', 'Api\PayoneController@paymentStatus')->name('api.payment_status');
|
||||
Route::post('/payment/status', 'Api\PayoneController@paymentStatus')->name('api.payment_status');
|
||||
Route::group(['middleware' => 'auth:api'], function(){
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue