mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
11 lines
281 B
PHP
11 lines
281 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
//to access ://{{servername}}/template/dashboard
|
|
Route::group(['prefix' => 'template'], function () {
|
|
Route::get('/dashboard', function () {
|
|
return view('pages.templates.dashboard');
|
|
})->name('template.dashboard');
|
|
});
|