fix names
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user