Blogger Information
Blog 30
fans 0
comment 0
visits 20038
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
11月4日作业,分别建立控制器、视图、路由文件,在控制器中模拟数据,并把数据渲染到视图中
人生就像过山车的博客
Original
536 people have browsed it

老师好, 11月4日作业,分别建立控制器、视图、路由文件,在控制器中模拟数据,并把数据渲染到视图中。 最近事很多,比较忙,而且由于纽约进入了冬令时,从而时差变为了13小时,以至于无法第一时间看直播了,但是还是会忙里偷闲看录播以及补写作业的,老师辛苦了,感恩感恩,虽然我进度落下来了,但是还会抽空推进,该做的作业,该交的毕设都不会少的


路由

Route::get('/admins/home/index','admins\Home@index');

控制器

namespace App\Http\Controllers\Admins;

use App\Http\Controllers\Controller;

class Home extends Controller{

    public function index(){

        $data['game'] = array('factory'=>'sony','type'=>'ps4');
        return view('admins/home/index',$data);
    }
}

模板

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
 content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
 @foreach($game as $k=>$v)
 {{$k.':'.$v}}<br>
 @endforeach
</body>
</html>

图片.png

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments