fix names

This commit is contained in:
CHIEFSOFT\ameye
2024-09-08 16:17:40 -04:00
parent 8682282859
commit ab41c3d0b8
2 changed files with 7 additions and 4 deletions
+4 -4
View File
@@ -6,16 +6,16 @@ class Home extends BaseController
{
public function index(): string
{
return view('home');
return view('Home');
}
public function about(): string
{
return view('about');
return view('About');
}
public function services(): string
{
return view('services');
return view('Services');
}
public function contact(): string
@@ -30,6 +30,6 @@ class Home extends BaseController
}
*/
return view('contact');
return view('Contact');
}
}
+3
View File
@@ -4,6 +4,9 @@ FROM php:8.1-apache
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
#RUN apt-get update
# mod_rewrite
RUN a2enmod rewrite
RUN apt-get update && \
apt-get install --yes --force-yes \
cron g++ gettext libicu-dev openssl \