first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-08-17 17:19:25 -04:00
commit 27aeffcfa3
904 changed files with 239087 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
//return view('welcome_message');
$data = array();
return $this->renderExternalPage('welcome_message', $data);
}
public function custom()
{
$data = array();
if ($this->uri->segment(3) === FALSE) {
$product_id = 0;
} else {
$product_id = $this->uri->segment(3);
}
echo "Here " . $product_id;
$data["facility_image"] = '';
}
}