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