'datetime:Y-m-d', 'to' => 'datetime:Y-m-d', 'days' => 'int', 'calories' => 'float', 'carbohydrates' => 'float', 'cholesterol' => 'float', 'fat' => 'float', 'protein' => 'float', 'sodium' => 'float', ]; /** * Get the User this goal belongs to. */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }