Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Commit

Permalink
add vehicle-list
Browse files Browse the repository at this point in the history
  • Loading branch information
alyafitrin committed May 14, 2022
1 parent 2008aef commit bc96305
Show file tree
Hide file tree
Showing 5 changed files with 244 additions and 82 deletions.
5 changes: 5 additions & 0 deletions app/Http/Controllers/BasicViewController.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public function getAbout()
return view('about');
}

public function getList()
{
return view('vehicles-list');
}

public function subscribe() {
$email = request()->input('email');
$subscription = SubscriptionEmail::firstOrCreate(['email' => $email]);
Expand Down
Loading

0 comments on commit bc96305

Please sign in to comment.