摘要:
建库,建modelphp artisan make:migration create_tags_table --create=tagsphp artisan make:model Tag加字段increments('id'); $table->string('name'); ... 阅读全文
摘要:
一个flash消息的插件composer require laracasts/flashconfig\app.php//provider'Laracasts\Flash\FlashServiceProvider'//aliases'Flash' => 'Laracasts\Flash\Flash'... 阅读全文
摘要:
简单的例子,更高级的插件应用在components目录控制器放入,flash是一次性的,put不是\Session::flash('flash_msg','Your article has been created!');视图显示 @if (Session::has('flash_ms... 阅读全文
摘要:
EventServiceProvidernamespace App\Providers;class EventServiceProvider extends ServiceProvider{ protected $listen = [ 'App\Events\UserHasReg... 阅读全文
摘要:
namespace App\Providers;class RouteServiceProvider extends ServiceProvider{ public function boot(Router $router) { parent::boot($router);... 阅读全文
摘要:
修改数据库articles结构,添加到user表的外键,migrate:refresh public function up() { Schema::create('articles', function (Blueprint $table) { $t... 阅读全文