diff options
author | floppydiskette <floppydisk@hyprcat.net> | 2024-09-13 12:58:12 +0100 |
---|---|---|
committer | floppydiskette <floppydisk@hyprcat.net> | 2024-09-13 12:59:16 +0100 |
commit | 2c3400fb4f5a22951d42f286975201bf817d7883 (patch) | |
tree | a08b06f5f6d5df4f6774da7645d85418609a4cf2 /routes | |
parent | d8915dcca4d9752f6f254e86afa39ef7f83617d1 (diff) |
wronglucky
Diffstat (limited to 'routes')
-rw-r--r-- | routes/api.php | 15 | ||||
-rw-r--r-- | routes/channels.php | 14 | ||||
-rw-r--r-- | routes/console.php | 15 | ||||
-rw-r--r-- | routes/web.php | 30 |
4 files changed, 0 insertions, 74 deletions
diff --git a/routes/api.php b/routes/api.php deleted file mode 100644 index fa84410..0000000 --- a/routes/api.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -use Illuminate\Http\Request; -use Illuminate\Support\Facades\Route; - -/* -|-------------------------------------------------------------------------- -| API Routes -|-------------------------------------------------------------------------- -| -| Here is where you can register API routes for your application. These -| routes are loaded by the RouteServiceProvider and all of them will -| be assigned to the "api" middleware group. Make something great! -| -*/ diff --git a/routes/channels.php b/routes/channels.php deleted file mode 100644 index 409c335..0000000 --- a/routes/channels.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php - -use Illuminate\Support\Facades\Broadcast; - -/* -|-------------------------------------------------------------------------- -| Broadcast Channels -|-------------------------------------------------------------------------- -| -| Here you may register all of the event broadcasting channels that your -| application supports. The given channel authorization callbacks are -| used to check if an authenticated user can listen to the channel. -| -*/ diff --git a/routes/console.php b/routes/console.php deleted file mode 100644 index 1e141ea..0000000 --- a/routes/console.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -use Illuminate\Foundation\Inspiring; -use Illuminate\Support\Facades\Artisan; - -/* -|-------------------------------------------------------------------------- -| Console Routes -|-------------------------------------------------------------------------- -| -| This file is where you may define all of your Closure based console -| commands. Each Closure is bound to a command instance allowing a -| simple approach to interacting with each command's IO methods. -| -*/ diff --git a/routes/web.php b/routes/web.php deleted file mode 100644 index 0b10251..0000000 --- a/routes/web.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -use App\Http\Controllers\BookmarksController; -use App\Http\Controllers\CalculatorsController; -use App\Http\Controllers\ComputersController; -use App\Http\Controllers\GuestbookController; -use App\Http\Controllers\HomeController; -use App\Http\Controllers\MusicController; -use Illuminate\Support\Facades\Route; - -/* -|-------------------------------------------------------------------------- -| 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! -| -*/ - -// Run the PageView middleware for *all* public GET routes -Route::get('/', [HomeController::class, 'show']); -Route::get('/bookmarks', [BookmarksController::class, 'show']); -Route::get('/guestbook', [GuestbookController::class, 'show']); -Route::get('/calculators', [CalculatorsController::class, 'show']); -Route::get('/computers', [ComputersController::class, 'show']); -Route::get('/music', [MusicController::class, 'show']); -Route::post('/guestbook', [GuestbookController::class, 'addEntry']) - ->middleware('rate_limit'); |