File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11<?php
22
33use App \Http \Controllers \TeamInvitationController ;
4+ use App \Http \Controllers \ContactController ;
5+ use App \Http \Controllers \AIMatchController ;
46use Illuminate \Support \Facades \Route ;
57
68/*
2729Route::get ('/about ' , fn () => view ('pages.aboutus ' ))->name ('about ' );
2830
2931Route::get ('/contact ' , fn () => view ('contact ' ));
30- Route::post ('/contact/send ' , ' App\Http\Controllers\ ContactController@ sendEmail ' );
32+ Route::post ('/contact/send ' , [ ContactController::class, ' sendEmail ' ])-> name ( ' contact.send ' );
3133
3234Route::middleware ([
3335 'auth:sanctum ' ,
3638])->group (function (): void {
3739 Route::get ('/dashboard ' , fn () => view ('dashboard ' ))->name ('dashboard ' );
3840 Route::get ('/gamification ' , \App \Http \Livewire \GamificationDashboard::class)->name ('gamification ' );
39-
40-
4141});
4242
4343Route::middleware (['auth ' , 'verified ' ])->group (function () {
4444 Route::post ('/ai/matches/{suggestion}/confirm ' , [AIMatchController::class, 'confirm ' ])->name ('ai.matches.confirm ' );
4545 Route::post ('/ai/matches/{suggestion}/reject ' , [AIMatchController::class, 'reject ' ])->name ('ai.matches.reject ' );
46+ });
You can’t perform that action at this time.
0 commit comments