标签:
laravel5.1中可以很方便的用命令行创建Model
1.php artisan make:model Content
接着添加属性
$fillable =array(‘id‘,‘article_id‘,‘content‘,‘created_at‘,‘updated_at‘);
这个数组里存储的是content表的字段名
2.创建控制器
php artisan make:controller AdminController
此时提示Controller created successfully. 说明创建成功!
标签:
原文地址:http://www.cnblogs.com/ishenghuo/p/5093578.html