Download the PHP package pardalsalcap/linter-locations without Composer
On this page you can find all versions of the php package pardalsalcap/linter-locations. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pardalsalcap/linter-locations
More information about pardalsalcap/linter-locations
Files in pardalsalcap/linter-locations
Package linter-locations
Short Description Add on to Linter to manage Geolocations
License MIT
Homepage https://github.com/pardalsalcap/linter-locations
Informations about the package linter-locations
Linter Locations
pardalsalcap/linter-locations adds a geographic data model and Filament resources for continents, countries, communities, states, cities, and addresses.
It is designed to work as an add-on for Laravel applications that already use Filament.
Compatibility
- PHP
^8.2 - Laravel
^11.0|^12.0 - Filament
^5.0
Installation
Install the package:
Publish and run the migrations:
Publish the config file if you want to adjust locales or search behavior:
Default config:
Install Command
The package ships with an install command:
The command asks for confirmation before each optional step:
- Populate the database with starter geographic data.
- Create the Filament resource wrappers inside your application.
If you confirm the resource step, the command creates these files in app/Filament/Resources when they do not already exist:
ContinentResource.phpCountryResource.phpCommunityResource.phpStateResource.phpCityResource.phpAddressResource.php
The generated classes extend the package resources, so you can start using them immediately and still customize them later in your app.
Filament Resources
The package provides base Filament resources for:
- Continents
- Countries
- Communities
- States
- Cities
- Addresses
The generated wrapper classes are intentionally minimal:
If you prefer to create them manually, examples are available in resources/stubs.
Database Seeder Data
The install command can preload:
- Continents
- Countries
- Spanish communities
- Spanish states
- Spanish cities
This gives a practical starting point for projects that need location data immediately.
Traits
HasAddresses
Use Pardalsalcap\LinterLocations\Traits\HasAddresses on any Eloquent model that should be linked to addresses.
Example:
Once applied, the model can attach, detach, and sync addresses through the provided relationship helpers.
Address Relation Manager
The package also includes AddressableRelationManager, which can be attached to your own Filament resources when the model uses HasAddresses.
Example:
Translations
You can publish the translation files with:
Published translations will be available under:
The package currently includes translation files for English and Spanish.
Credits
- pardalsalcap
- All Contributors
License
The MIT License (MIT). See LICENSE.md.
All versions of linter-locations with dependencies
filament/filament Version ^5.0
illuminate/contracts Version ^11.0|^12.0
spatie/laravel-package-tools Version ^1.14.0