mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-26 07:54:18 +00:00
12 lines
336 B
PHP
12 lines
336 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'account', 'namespace' => 'Accounts', 'as' => 'account.'], function () {
|
|
|
|
Route::group(['prefix' => 'registration', 'as' => 'registration.'], function () {
|
|
Route::post('/registration', 'CreateCustomerController@create')->name('register');
|
|
});
|
|
|
|
});
|