'datetime', 'scheduled_at' => 'datetime', 'is_published' => 'boolean', ]; public function comments() { return $this->hasMany(Comment::class); } public function scopePublished($query) { return $query->where('is_published', true); } }