change structure for webservice
This commit is contained in:
18
routes/webservices.php
Normal file
18
routes/webservices.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Http\Controllers\V3\Dashboard\Harim\PanjareVahedController;
|
||||
|
||||
Route::prefix('harim')
|
||||
->name('harim.')
|
||||
->group(function () {
|
||||
Route::prefix('panjare_vahed')
|
||||
->name('panjarevahed.')
|
||||
->controller(PanjarevahedController::class)
|
||||
->group(function () {
|
||||
Route::post('/receive_new_request', 'receiveNewRequest')->name('receiveNewRequest');
|
||||
Route::post('/receive_access_road','getAccessRoad')->name('getAccessRoad');
|
||||
Route::post('/get_status_request','getRejectRequest')->name('getRejectRequest');
|
||||
Route::post('/get_final_polygons','getFinalPolygons')->name('getFinalPolygons');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user