# Product Nomenclature Update

## Summary
Updated all product names and descriptions to match the official AFINET nomenclature standards.

## Changes Made

### Product Name Updates

#### Magellan Metro-VPN
- **Old**: "Magellan Metro-VPN 40Mbps"
- **New**: "Magellan Metro-VPN (Virtual Private Network) 40Mbps"
- Applied to all 8 Magellan packages (40, 100, 200, 300, 600, 1000, 2000 Mbps, NNI)

#### InterCity-VPN
- **Old**: "InterCity-VPN"
- **New**: "InterCity-VPN (Virtual Private Network)"

### Description Updates

#### Magellan Metro-VPN
- **New Standard**: "Metro VPN is a high-speed, cost-effective networking solution for connecting branches or sites within the same city. [SPEED] bandwidth."
- Consistent across all Magellan packages

#### Shared Business Broadband
- **New Standard**: "A shared internet service offering a cost-effective solution for general business connectivity needs such as browsing. Shared internet with speed up to [SPEED]. Effective bandwidth is [EFFECTIVE]."
- Applied to all 4 shared broadband packages

#### Dedicated Burst Internet
- **New Standard**: "An internet connectivity solution guaranteeing a base internet bandwidth with the flexibility to temporarily increase speed during peak demand. Ideal for businesses with occasional spikes in usage such as software updates or large file transfers. Dedicated [BASE]Mbps, burst to [BURST]Mbps."
- Applied to all 3 dedicated burst packages

#### Custom Enterprise Services
- Descriptions remain unchanged (already matching nomenclature):
  - Dedicated Internet Access
  - IP Transit
  - Dark Fibre Lease
  - International Private Line Circuit (IPLC)
  - InterCity-VPN (Virtual Private Network)

## Nomenclature Reference Table

| In-house Name | Website Name | Feasibility Test | Field |
|---------------|--------------|------------------|-------|
| Magellan | Magellan Metro-VPN (Virtual Private Network) | Yes | Business and Wholesale |
| Shared Broadband | Shared Business Broadband | Yes | Business |
| Dedicated Burst | Dedicated Burst Internet | Yes | Business |
| Dedicated Internet Access | Dedicated Internet Access | No | Business and Wholesale |
| IP Transit | IP Transit | No | Wholesale |
| Dark Fibre | Dark Fibre Lease | No | Wholesale |
| International Longhaul | International Private Line Circuit (IPLC) | No | Wholesale |
| Longhaul | InterCity-VPN (Virtual Private Network) | No | Business and Wholesale |

## Product Categories

### Feasibility-Based Products (Require Coverage Check)
1. **Magellan Metro-VPN (Virtual Private Network)** - 8 packages
   - High-speed, cost-effective networking for connecting branches within same city
   - Pricing: $85 - $963/month
   
2. **Shared Business Broadband** - 4 packages
   - Cost-effective solution for general business connectivity
   - Pricing: $67.98 - $339.89/month
   
3. **Dedicated Burst Internet** - 3 packages
   - Guaranteed base bandwidth with burst capability
   - Pricing: $407.87 - $815.74/month

### Custom Enterprise Products (No Feasibility Check)
1. **Dedicated Internet Access** - Custom pricing
   - Guaranteed, uncontended connection with SLA
   
2. **IP Transit** - Custom pricing
   - High-capacity backbone connection to global internet
   
3. **Dark Fibre Lease** - Custom pricing
   - Passive fibre infrastructure for client equipment
   
4. **International Private Line Circuit (IPLC)** - Custom pricing
   - Dedicated cross-border VPN connection
   
5. **InterCity-VPN (Virtual Private Network)** - Custom pricing
   - High-speed networking for connecting sites in different cities

## Verification

Run this command to verify the updates:

```bash
php artisan tinker --execute="
echo 'Sample products:' . PHP_EOL;
echo '1. ' . App\Models\ProductPackage::where('code', 'MAG-40')->value('name') . PHP_EOL;
echo '2. ' . App\Models\ProductPackage::where('code', 'SBB-50')->value('name') . PHP_EOL;
echo '3. ' . App\Models\ProductPackage::where('code', 'DBI-20-100')->value('name') . PHP_EOL;
echo '4. ' . App\Models\ProductPackage::where('code', 'ICVPN-CUSTOM')->value('name') . PHP_EOL;
"
```

Expected output:
```
Sample products:
1. Magellan Metro-VPN (Virtual Private Network) 40Mbps
2. Shared Business Broadband Channel 50
3. Dedicated Burst Internet 20/100
4. InterCity-VPN (Virtual Private Network)
```

## Files Modified

1. `database/seeders/RealProductPackagesSeeder.php`
   - Updated all product names
   - Updated all product descriptions
   - Maintained pricing and technical specifications

## Re-seeding

To apply these changes to your database:

```bash
php artisan db:seed --class=RealProductPackagesSeeder
```

This will truncate the product_packages table and re-seed with the updated nomenclature.

## Impact

- **Frontend**: Product names will display with full nomenclature
- **Backend**: API responses will include updated names
- **Orders**: New orders will reference updated product names
- **Quotations**: Quotations will show updated product names
- **Invoices**: Invoices will display updated product names

## Notes

- All pricing remains unchanged
- Technical specifications remain unchanged
- Order flow logic remains unchanged
- Feasibility requirements remain unchanged
- Only names and descriptions updated for consistency

---

Last Updated: 2026-02-23
Status: ✅ COMPLETE
