Skip to content

Commit

Permalink
Update badges and fix routes in web.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardhanna committed Oct 29, 2024
1 parent f7f2fb4 commit e7c04e9
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 8 deletions.
Binary file modified public/badges/influencer/influencer_active_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/influencer/influencer_champion_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/influencer/influencer_expert_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/influencer/influencer_legendary_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/influencer/influencer_normal_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/organiser/organiser_active_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/organiser/organiser_champion_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/organiser/organiser_expert_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/organiser/organiser_legendary_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/badges/organiser/organiser_master_2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -373,14 +373,10 @@

Route::get('participation', [ParticipationController::class, 'show'])
->name('participation')
->middleware(['auth']);

Route::get('/profile', function () {
$data = ['profileUser' => Auth()->user()];
return view('profile', $data);
})
->name('profile')
->middleware(['auth']);
->middleware(['auth','verified']);
Route::post('participation', [ParticipationController::class, 'generate'])
->name('participation_submit')
->middleware('auth');

//Route::get('participation/test', 'ParticipationController@test');

Expand Down

0 comments on commit e7c04e9

Please sign in to comment.