*/ protected $fillable = [ 'title', 'slug', 'publish_at', 'content', 'user_id', 'hero' ]; /** * Get the article user * * @return Illuminate\Database\Eloquent\Relations\BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }