a359611223

2156 经验值

按照步骤 展示的body部分反而变成了原样的html代码 像这样
<h1>Eloquent ORM</h1><h2>定义模型</h2>

开始之前,让我们先来创建一个 Eloquent 模型。模型通常放在 app 目录中,不过你可以将他们随意放在任何可通过 composer.json 自动加载的地方。所有的 Eloquent 模型都继承自 IlluminateDatabaseEloquentModel 类。

创建模型实例的最简单方法是使用 make:model Artisan 命令:

<pre>php artisan make:model User </pre>

当你生成一个模型时想要顺便生成一个 数据库迁移,可以使用 --migration 或 -m 选项:

<pre>php artisan make:model User --migration php artisan make:model User --m </pre><h3>Eloquent 模型约定</h3>

现在,让我们来看一个 Flight 模型类的例子,我们将会用它从 flights 数据表中取回与保存信息:

5.4中已经将Authenticate中间件拆解成了4个controller?

今天已经开始使用了 很不错 谢谢推荐

5.4 queue 方法报了如下错误

public function sendTo($user,$subject,$view,$data=[]){
        Mail::queue($view,$data,function($message) use($user,$subject){
            $message->to($user->email)->subject($subject);
        });
    }

(1/1) InvalidArgumentException
Only mailables may be queued.

如果将代码改成

public function sendTo($user,$subject,$view,$data=[]){
        Mail::send($view,$data,function($message) use($user,$subject){
            $message->to($user->email)->subject($subject);
        });
    }

就正常发送了
还有QQ邮箱会拦截外链 似乎点击继续访问就跳转不到本地了outlook正常

public function setPasswordAttribute($password){
        $this->attributes['password'] = Hash::make($password);
}

这段代码如何理解呢

如果是以laravel项目目录为首页 link 中href就需要改成{asset('css/bootstrap.css')}

factory中的imageUrl是封装好的方法 直接生成lorempixel.com网站的placeholder图片链接吗?

5.4中的写法应该是这样

    public function boot()
    {
        $this->registerPolicies();

        Gate::define('show-post',function($user,$post){
            return $user->id == $post->user_id;
        });
    }
}

5.4 支持 php artisan make:model Post -m 直接生成Post的migration表

感觉再学习下去就想转前端了 哈哈哈哈

vue-cli生成页面是需要通过编译吗
直接打开目录文件页面是空的