Skip to content

Commit

Permalink
Created functions to return static views
Browse files Browse the repository at this point in the history
  • Loading branch information
Raccoon254 committed May 27, 2024
1 parent bfa2d71 commit 8a937e6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/Http/Controllers/PagesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@ public function contact(): View
return view('contact');
}

public function howItWorks(): View
{
return view('static.how-it-works');
}

public function services(): View
{
return view('static.services');
}

public function about(): View
{
return view('static.about');
}

public function submit(Request $request)
{
// Validate the form data
Expand Down
Empty file.

0 comments on commit 8a937e6

Please sign in to comment.