'integer', 'user_id' => 'integer', 'price' => 'decimal:2', 'estimated_days' => 'integer', 'is_available' => 'boolean' ]; /** * Get the tailor that owns the service */ public function tailor() { return $this->belongsTo(User::class, 'user_id'); } }