ro
8d3af5b6e1
Added the folder containg Fipamo markdown files to set up a basic route for the start of the dashboard and quick test to make sure the file paths can be read also added CSS files that will style the new template system, which is currenlty in twig but will be convereted to blade
27 lines
667 B
PHP
27 lines
667 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use App\Http\Controllers\DashController;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider and all of them will
|
|
| be assigned to the "web" middleware group. Make something great!
|
|
|
|
|
*/
|
|
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
});
|
|
|
|
//DASHBOARD
|
|
|
|
//back
|
|
Route::group(['prefix' => 'dashboard'], function () {
|
|
Route::get("/", [DashController::class, 'start']);
|
|
});
|