fix templates

This commit is contained in:
CHIEFSOFT\ameye
2024-08-19 17:11:04 -04:00
parent d468215184
commit 8be59b2444
257 changed files with 14082 additions and 1 deletions
+8 -1
View File
@@ -6,6 +6,13 @@ class Home extends BaseController
{
public function index(): string
{
return view('welcome_message');
return view('home');
}
public function aboutUs(): string
{
return view('about-us');
}
public function contacts():string {
return view('contacts');
}
}