Update Metronic Version to 8.2.1 #1

Merged
putrakuningan merged 77 commits from dev into master 2024-05-04 09:46:45 +00:00
Showing only changes of commit 6033e1850a - Show all commits

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::group(['middleware' => ['auth', 'verified']], function () {
Route::resource('directorat', DirectoratController::class);
});
Route::domain('cetaklabel.io')->group(function () {
Route::group(['middleware' => ['auth', 'verified']], function () {
Route::resource('directorat', DirectoratController::class);
});
});