contract template obligation modal UI

This commit is contained in:
glovetleong
2021-07-10 16:27:24 +08:00
parent 85a042b18a
commit 18e4e8c669
23 changed files with 1283 additions and 29 deletions
+6
View File
@@ -62,6 +62,12 @@ Route::group(['namespace' => 'User', 'prefix' => 'user-backsys/api'], function (
'middleware' => ['permission:delete entity']
]
);
Route::post('valid-check/{hash_id?}',
[
'as' => 'api.entity.valid-check',
'uses' => 'EntityController@validCheck',
]
);
});
// Entity Signature
+5 -1
View File
@@ -4,11 +4,15 @@ Route::group(['namespace' => 'User'], function () {
Route::group(['namespace' => 'Web'], function () {
Route::get('/login', ['as' => 'user.app.login', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/user/profile/update', ['as' => 'user.app.profile.update', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/entity/list', ['as' => 'user.app.entity.list', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/entity/create', ['as' => 'user.app.entity.create', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/entity/edit/{hash_id}', ['as' => 'user.app.entity.create', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/contract-template/list', ['as' => 'user.app.contract-template.list', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/contract-template/create', ['as' => 'user.app.contract-template.create', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/contract-template/edit/{hash_id}', ['as' => 'user.app.contract-template.create', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/contract/list', ['as' => 'user.app.contract.list', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/contract/create', ['as' => 'user.app.contract.create', 'uses' => 'AppController@index'])->where('any', '.*');
Route::get('/', ['as' => 'user.app', 'uses' => 'AppController@index'])->where('any', '.*');