belongsTo(MealPosts::class, 'meal_post_id'); } public function user(): BelongsTo { return $this->belongsTo(User::class); } protected function casts(): array { return [ 'id' => 'string', 'rating' => 'integer', ]; } }