美文网首页
10. 文章的发布时间的优化published_at

10. 文章的发布时间的优化published_at

作者: ZhouJiping | 来源:发表于2016-06-15 23:22 被阅读30次

  // 将published_at 作为Carbon对象来chu l
    public $date = ['published_at'];

   // setTitleAttribute  设置属性
    public function setPublishedAtAttribute($date)
    {
        $this->attributes['published_at'] = Carbon::createFormFormat('Y-m-d',$date);
    }

    scopeFunction($query)  $query 查询语句
    public function scopePublished($query)
    {
        $query->where('published_at','<=',Carbon::now());
    }

相关文章

网友评论

      本文标题:10. 文章的发布时间的优化published_at

      本文链接:https://www.haomeiwen.com/subject/fweedttx.html