lavarel前端文件保存为.blade.php类型的文件,解析方法为{{}}
也可以用.php结尾,但是解析时只能用原生方法<?php echo $title;?>
数据库配置文件在/.env文件中
迁移文件用命令生成,不需要自己写,生成后再补齐内容:
cmd窗口进入项目根目录下,执行创建表命令:
php artisan make:migration create_good_table --create=goods
此时会在/database/migrations文件夹下多多出一个文件,如下:
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateGoodsTable extends Migration
{
/**
* Run the migrations.
* @return void
* up 函数主要执行添加和修改列的操作
* 生成操作
*/
public function up()
{
Schema::create('goods', function(Blueprint $table){
$table->increments('id');
$table->string('name');
$table->text('content');
$table->timestamps();
});
}
/**
* Reverse the migrations.
* @return void
* down 函数执行删除操作
* 回滚操作
*/
public function down(){
Schema::drop('goods');
}
}
?>
http://lavarel-china.org/docs/5.1/5.1/authorization#creating-policies
php artisan make:policy PostPolicy
php artisan --help OR -h
php artisan --quiet OR -q
php artisan --version OR -V
php artisan --no-interaction OR-n
php artisan --ansi
php artisan route:cache
php artisan route:clear
php artisan make:controller TestController
备注:在项目根目录下执行,生成文件app/http/controller/TestController
php artisan make:controller Admin\TestController
备注:在项目根目录下执行,生成文件app/http/controller/Admin/TestContoller