46 lines
1.5 KiB
PHP
46 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
class Products extends BaseController
|
|
{
|
|
public function index()
|
|
{
|
|
$data['product_list'] = $this->productList();
|
|
return view('products',$data);
|
|
}
|
|
|
|
private function productList(){
|
|
$product_array = array(
|
|
"float" =>
|
|
[
|
|
"name"=>"Float Mobility",
|
|
"industry"=>"A.I Mobility",
|
|
"img" =>"./assets/img/products/product_float.jpg",
|
|
"desc"=>"Travel smarter and safer, with Float's rideshare comparison, ride hailing and budgeting app. Available on IOS and Android.",
|
|
"site"=>"https://www.float.sg/"
|
|
]
|
|
,
|
|
"wrenchboard" =>
|
|
[
|
|
"name"=>"WrenchBoard",
|
|
"industry"=>"e-Commerce",
|
|
"img" =>"./assets/img/products/product_wrenchboard.jpg",
|
|
"desc"=>"The marketplace to make money from your skills, find, buy and sell professional services.",
|
|
"site"=>"https://www.wrenchboard.com/"
|
|
] ,
|
|
"automedsys" =>
|
|
[
|
|
"name"=>"autoMedSys",
|
|
"industry"=>"Healthcare",
|
|
"img" =>"./assets/img/products/product_automedsys.jpg",
|
|
"desc"=>"autoMedSys, empower providers with innovative tools to manage thier practice and engage patients.",
|
|
"site"=>"https://www.automedsys.net/"
|
|
]
|
|
);
|
|
|
|
return $product_array;
|
|
|
|
}
|
|
}
|