Laravel Nusa provides complete, ready-to-use Indonesian administrative region data for Laravel applications. This package includes all 38 provinces, 514 regencies, 7,285 districts, and 83,762 villages with their hierarchical relationships, postal codes, and geographic coordinates based on Kepmendagri No 300.2.2-2138 Tahun 2025.
Laravel Nusa solves the common challenge of integrating Indonesian administrative data into Laravel applications. Unlike other packages, it requires no data migration or seeding—the data is ready immediately after installation.
Instead of manually importing and maintaining large datasets, you get:
- Instant Setup: Pre-packaged SQLite database with all data ready to use
- Official Data: Sourced from authoritative Indonesian government databases
- Complete Models: Province, Regency, District, Village with relationships
- RESTful API: Ready-to-use endpoints for all administrative levels
- Address Management: Built-in address system with validation
- Geographic Data: Coordinates and postal codes
- Customizable: Extend models and customize to fit your needs
For complete usage instructions, API reference, examples, and guides, visit our comprehensive documentation:
Install the package via Composer:
composer require creasi/laravel-nusa
Start using it immediately:
use Creasi\Nusa\Models\Province;
// Get all provinces
$provinces = Province::all();
// Search by name or code
$jateng = Province::search('Jawa Tengah')->first();
$jateng = Province::search('33')->first();
// Get related data
$regencies = $jateng->regencies;
$districts = $jateng->districts;
$villages = $jateng->villages;
That's all! The package is ready to use immediately after installation.
For development setup, contribution guidelines, and detailed information about the project structure, see the full documentation.
- cahyadsn/wilayah
- cahyadsn/wilayah_kodepos
- cahyadsn/wilayah_boundaries
- w3appdev/kodepos
- edwardsamuel/Wilayah-Administratif-Indonesia
The MIT License (MIT). Please see License File for more information.