Core/Modules/CetakLabel/Routes/web.php

23 lines
659 B
PHP
Raw Normal View History

2023-05-10 15:15:50 +00:00
<?php
2023-05-12 02:40:41 +00:00
/*
|--------------------------------------------------------------------------
| 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!
|
*/
2023-05-10 15:15:50 +00:00
2023-05-12 02:40:41 +00:00
use Modules\CetakLabel\Http\Controllers\DirectoratController;
2023-05-10 15:15:50 +00:00
2023-05-12 02:40:41 +00:00
Route::domain('cetaklabel.io')->group(function () {
Route::group(['middleware' => ['auth', 'verified']], function () {
Route::resource('directorat', DirectoratController::class);
2023-05-11 01:29:47 +00:00
});
2023-05-12 02:40:41 +00:00
});
2023-05-11 01:29:47 +00:00
2023-05-10 15:15:50 +00:00