updated list

This commit is contained in:
DESKTOP-DH6BVPV\chiefsoft
2022-11-22 18:21:56 -05:00
parent 228b501cf5
commit 244b365efe
3 changed files with 48 additions and 146 deletions
+23 -1
View File
@@ -6,6 +6,28 @@ class Home extends BaseController
{
public function index()
{
return view('project/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;
}
}