# Conflicts:
#	Modules/CetakLabel/Routes/api.php
This commit is contained in:
daeng.deni@dharma.or.id 2023-05-15 10:16:35 +07:00
commit 6033e1850a

View File

@ -1,25 +1,22 @@
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
use Modules\CetakLabel\Http\Controllers\DirectoratController;
use Modules\CetakLabel\Http\Controllers\DirectoratController;
$module = Module::find('CetakLabel');
$domain = config($module->getLowerName() . '.domain');
Route::domain($domain)->group(function () {
Route::domain('cetaklabel.io')->group(function () {
Route::group(['middleware' => ['auth', 'verified']], function () {
Route::resource('directorat', DirectoratController::class);
});
});
});