diff --git a/src/Controller/DashboardController.php b/src/Controller/DashboardController.php new file mode 100644 index 0000000..44dfedc --- /dev/null +++ b/src/Controller/DashboardController.php @@ -0,0 +1,18 @@ +render('index/index.html.twig'); + } +} diff --git a/src/Entity/Category.php b/src/Entity/Category.php new file mode 100644 index 0000000..b3d9bbc --- /dev/null +++ b/src/Entity/Category.php @@ -0,0 +1 @@ +id; + } + + public function setId(int $id): static + { + $this->id = $id; + + return $this; + } + + public function getFirstName(): ?string + { + return $this->firstName; + } + + public function setFirstName(string $firstName): static + { + $this->firstName = $firstName; + + return $this; + } + + public function getLastName(): ?string + { + return $this->lastName; + } + + public function setLastName(string $lastName): static + { + $this->lastName = $lastName; + + return $this; + } +} diff --git a/src/Entity/Incident.php b/src/Entity/Incident.php new file mode 100644 index 0000000..b3d9bbc --- /dev/null +++ b/src/Entity/Incident.php @@ -0,0 +1 @@ +id; + } +} diff --git a/src/Entity/Ride.php b/src/Entity/Ride.php new file mode 100644 index 0000000..b3d9bbc --- /dev/null +++ b/src/Entity/Ride.php @@ -0,0 +1 @@ + +

Welcome, *Dashboard User* !

+ + This is a placeholder. + +{% endblock %}