'boolean', 'commission_percentage' => 'decimal:2', 'threshold_amount' => 'decimal:2', ]; public static function current() { return static::first() ?? static::create([ 'is_enabled' => true, 'commission_percentage' => 10.00, 'threshold_amount' => 50.00, ]); } }