*/ protected $fillable = [ 'user_id', 'comment', 'rating', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'rating' => 'integer', ]; /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ // public function user(): BelongsTo // { // return $this // ->belongsTo(User::class) // ->select('first_name'); // } }