Skip to content

Commit

Permalink
#27, Changed File name
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenraam committed Oct 23, 2024
1 parent 035740e commit 5d81472
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Support\Facades\Session;
use Illuminate\Http\Request;

class ForumContoller extends Controller
class ForumController extends Controller
{
//

Expand Down
10 changes: 5 additions & 5 deletions Alumni-Project/routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use App\Http\Controllers\PostController;
use App\Http\Controllers\EventStudentController;
use App\Http\Controllers\ForgotPasswordController;
use App\Http\Controllers\ForumContoller;
use App\Http\Controllers\ForumController;
use App\Http\Controllers\PostReportsController;
use App\Http\Controllers\LogoutController;
use App\Http\Controllers\MentorshipController;
Expand Down Expand Up @@ -167,7 +167,7 @@


// View Forum
Route::get('/alumni/forum',[ForumContoller::class,'viewQuestions']);
Route::get('/alumni/forum',[ForumController::class,'viewQuestions']);

// Change password
Route::get('/alumni/change-password',[AlumniLoginController::class,'showChangePasswordForm'])->name('alumni.change-password.form');
Expand Down Expand Up @@ -215,9 +215,9 @@
Route::get('student/student-tasks', [TaskController::class, 'showStudentTasks'])->name('student.tasks');

// Forum
Route::get('/student/forum', [ForumContoller::class, 'viewQuestions'])->name('forum.index');
Route::get('/student/forum/add', [ForumContoller::class, 'createQuestion']);
Route::post('/student/forum/add/post', [ForumContoller::class, 'storeQuestion'])->name('questions.store');
Route::get('/student/forum', [ForumController::class, 'viewQuestions'])->name('forum.index');
Route::get('/student/forum/add', [ForumController::class, 'createQuestion']);
Route::post('/student/forum/add/post', [ForumController::class, 'storeQuestion'])->name('questions.store');

});

Expand Down

0 comments on commit 5d81472

Please sign in to comment.