Skip to content

Commit

Permalink
Fixed 404 errros on Training page by adding missing routes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardhanna committed Oct 29, 2024
1 parent 77ef78a commit f7f2fb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/community.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -288,4 +288,4 @@ class="codeweek-svg-button">
</script>
@endsection
@endsection
5 changes: 5 additions & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@
[StaticPageController::class, 'static']
)->name('training.module-21');

/*Route::get(
'/training/making-and-coding',
[StaticPageController::class, 'static']
)->name('training.module-22'); */

Route::get('/resources/CodingAtHome', [CodingAtHomeController::class, 'show'])->name(
'coding@home'
);
Expand Down

0 comments on commit f7f2fb4

Please sign in to comment.