Initial Commit
This commit is contained in:
8
routes/console.php
Normal file
8
routes/console.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
78
routes/web.php
Normal file
78
routes/web.php
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Http\Controllers\AuthController;
|
||||
use App\Http\Controllers\AdminController;
|
||||
use App\Http\Controllers\PostController;
|
||||
use App\Http\Controllers\BlogController;
|
||||
use App\Http\Controllers\SitemapController;
|
||||
|
||||
Route::group([], function () {
|
||||
Route::permanentRedirect('/blog/schlaf-optimieren', '/');
|
||||
Route::permanentRedirect('/blog/hydration-richtig-machen', '/');
|
||||
Route::permanentRedirect('/blog/makros-vs-mikros', '/');
|
||||
});
|
||||
|
||||
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('front.pages.front-example');
|
||||
});
|
||||
|
||||
/**
|
||||
* Frontend Routes
|
||||
*/
|
||||
Route::get('/', [BlogController::class, 'index'])->name('home');
|
||||
Route::get('/post/{slug}', [BlogController::class, 'readPost'])->name('read_post'); /* XML Integriert */
|
||||
Route::get('/posts/category/{slug}', [BlogController::class, 'categoryPosts'])->name('category_posts'); /* XML Integriert */
|
||||
Route::get('/posts/author/{username}', [BlogController::class, 'authorPosts'])->name('author_posts'); /* XML Integriert */
|
||||
Route::get('/posts/tag/{any}', [BlogController::class, 'tagPosts'])->name('tag_posts');
|
||||
Route::get('/search', [BlogController::class, 'searchPosts'])->name('search_posts');
|
||||
Route::get('/contact', [BlogController::class, 'contactPage'])->name('contact');
|
||||
Route::post('/contact', [BlogController::class, 'sendEmail'])->name('send_email');
|
||||
|
||||
/**
|
||||
* Sitemap
|
||||
*/
|
||||
Route::get('/sitemap.xml', [SitemapController::class, 'index']);
|
||||
|
||||
/**
|
||||
* ADMIN ROUTES
|
||||
*/
|
||||
Route::prefix("admin")->name("admin.")->group(function() {
|
||||
Route::middleware(["guest", 'preventBackHistory'])->group(function() {
|
||||
Route::controller(AuthController::class)->group(function() {
|
||||
Route::get("/login", "loginForm")->name("login");
|
||||
Route::post("/login", "loginHandler")->name("login_handler");
|
||||
Route::get("/forgot-password", "forgotForm")->name("forgot");
|
||||
Route::post("/send-password-reset-link", "sendPasswordresetLink")->name("send_password_reset_link");
|
||||
Route::get("/password/reset/{token}", "resetForm")->name("reset_password_form");
|
||||
Route::post("/reset-password-handler", "resetPasswordHandler")->name("reset_password_handler");
|
||||
});
|
||||
});
|
||||
|
||||
Route::middleware(["auth", 'preventBackHistory'])->group(function() {
|
||||
Route::controller(AdminController::class)->group(function() {
|
||||
Route::get("/dashboard", "adminDashboard")->name("dashboard");
|
||||
Route::get("/logout", "logoutHandler")->name("logout");
|
||||
Route::get("/profile", "profileView")->name("profile");
|
||||
Route::post("/update-profile-picture", "updateProfilePicture")->name("update_profile_picture");
|
||||
|
||||
Route::middleware(['onlySuperAdmin'])->group(function() {
|
||||
Route::get("/settings", "generalSettings")->name("settings");
|
||||
Route::post("/update-logo", "updateLogo")->name("update_logo");
|
||||
Route::post("/update-favicon", "updateFavicon")->name("update_favicon");
|
||||
Route::get("/categories", "categoriesPage")->name("categories");
|
||||
Route::get("/slider", "manageSlider")->name("slider");
|
||||
});
|
||||
});
|
||||
|
||||
Route::controller(PostController::class)->group(function() {
|
||||
Route::get('/post/new', 'addPost')->name('add_post');
|
||||
Route::post('/post/create', 'createPost')->name('create_post');
|
||||
Route::get('/posts', 'allPosts')->name('posts');
|
||||
Route::get('/post/{id}/edit', 'editPost')->name('edit_post');
|
||||
Route::post('/post/update', 'updatePost')->name('update_post');
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user