Add matrix

This commit is contained in:
2026-02-18 12:34:10 +01:00
parent 57cf153560
commit 3bb6af73c3
9 changed files with 393 additions and 1 deletions

View File

@@ -11,7 +11,14 @@ use Illuminate\Support\Facades\Route;
| User Routes
|---------------------------------------------------------------------------------
*/
// Matrix
Route::get('/join-matrix', [App\Http\Controllers\MatrixController::class, 'index'])->name('join.matrix');
Route::middleware('auth')->group(function () {
// Matrix
Route::post('/join-matrix', [App\Http\Controllers\MatrixController::class, 'store'])->name('join.matrix.create');
Route::get('/user/profile', [ProfileController::class, 'index'])->name('profile.show');
Route::get('/user/comments', [ProfileController::class, 'comments'])->name('profile.comments');
Route::get('/user/likes', [ProfileController::class, 'likes'])->name('profile.likes');