*/ protected $fillable = [ 'title', 'phone', 'content', 'type', 'user_id', ]; /** * User * * User that submitted form */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }