Skip to content

Instantly share code, notes, and snippets.

@mini2911
Created June 5, 2021 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mini2911/ca7b12bb92363aaffc0b639f906978c1 to your computer and use it in GitHub Desktop.
Save mini2911/ca7b12bb92363aaffc0b639f906978c1 to your computer and use it in GitHub Desktop.
// for creditmanager/v2
Route::group(['middleware' => 'auth::creditmanager', 'prefix' => '/creditmanager/v2', 'as' => 'creditmanager'], function ()
{
Route::get('/customerDetailsModification', 'BorrowerAuth\iciciController@customerDetailsModification');
Route::get('/NewCustomer', 'BorrowerAuth\iciciController@NewCustomer');
Route::get('/instantSanction', 'BorrowerAuth\iciciController@instantSanction');
}
@maqsudinamdar
Copy link

Route::group(['middleware' => 'auth:borrower', 'prefix' => 'borrower/v1', 'as' => 'borrower.'], function (){

Route::group(['prefix' => 'icici', 'as' => 'icici.'], function (){

Route::group(['prefix' => 'instaOd', 'as' => 'instaOd.'], function (){

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment