Replaced Moment with Carbon #84

Merged
Ghost merged 148 commits from develop into beta 2022-09-22 05:53:36 +02:00
2 changed files with 19 additions and 3 deletions
Showing only changes of commit 2420ea193c - Show all commits

View file

@ -0,0 +1,17 @@
<?php
namespace App\Http\Controllers\Front;
use App\Http\Controllers\Controller;
class StartController extends Controller
{
public function __construct()
{
}
public function index()
{
return response()->file('../public/index.html');
}
}

View file

@ -3,6 +3,7 @@
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\Dash\IndexController;
use App\Http\Controllers\Dash\AuthController;
use App\Http\Controllers\Front\StartController;
use App\Http\Controllers\Theming\ThemeController;
/*
@ -16,9 +17,7 @@ use App\Http\Controllers\Theming\ThemeController;
|
*/
Route::get('/', function () {
return view('welcome');
});
Route::get("/", [StartController::class, 'index']);
//DASHBOARD