Files
DESKTOP-DH6BVPV\chiefsoft 244b365efe updated list
2022-11-22 18:21:56 -05:00

34 lines
553 B
PHP

<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index()
{
$data['sites'] = $this->getSiteData();
return view('project/index',$data);
}
private function getSiteData(){
$data = [
['text'=>'Float EV www-DEV'],
['text'=>'Thumbnail 2'],
['text'=>'Thumbnail 3'],
['text'=>'Thumbnail 4'],
['text'=>'Thumbnail 5'],
['text'=>'Thumbnail 6'],
['text'=>'Thumbnail 7'],
['text'=>'Thumbnail 8']
];
return $data;
}
}