Home  >  Article  >  Backend Development  >  Laravel学习

Laravel学习

WBOY
WBOYOriginal
2016-06-20 12:44:51883browse

主要是在laravist上看视频,讲的很棒,感觉学到了很多。好喜欢最后的那句:Happy Hacking~

从composer上建立项目:composer create-project laravel/laravel test_laravel

启动服务器:php artisan serve

然后就各种修改参数的感觉。

  • bootCDN,bootstrap的css真的好用!

  • blade模板引擎,@yield('')和@extends('') @section('')@stop 


传递数据回视图(view)

    $people = ['Talor Otwell','Jeffray Way','Happy Peter'];     return view('sites.contact',compact('people'));

[config] | 环境配置

app.php

'timezone' => 'PRC' (中国


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn