ernysans / laraworld
Countries, Languages and Time Zones Package for Laravel 5.*
Installs: 49 965
Dependents: 0
Suggesters: 0
Security: 0
Stars: 17
Watchers: 3
Forks: 12
Open Issues: 3
Requires
- php: >=5.6
Requires (Dev)
- laravel/laravel: ^5.2
- phpunit/phpunit: 5.1.*
This package is not auto-updated.
Last update: 2024-11-09 19:33:34 UTC
README
Laraworld
Countries, Languages and Time Zones Package for Laravel and Lumen 5.*
Please check the Known Issues section before reporting a new one.
Installation
This package can be installed through Composer.
$ composer require ernysans/laraworld
When using Laravel there is a service provider that you can make use of.
// app/config/app.php 'providers' => [ '...', ErnySans\Laraworld\LaraworldServiceProvider::class, ];
Configure the aliases to make use of the Facades.
// app/config/app.php 'aliases' => [ '...', 'Countries' => ErnySans\Laraworld\Facades\Countries::class, 'TimeZones' => ErnySans\Laraworld\Facades\TimeZones::class, 'Languages' => ErnySans\Laraworld\Facades\Languages::class, ];
If you are using Laravel 5.5 it's not required to manually add the service provider and aliases.
Publish Migrations and Seeds.
$ php artisan vendor:publish --provider="ErnySans\Laraworld\LaraworldServiceProvider"
Prepare Seeds.
// database/seeds/DatabaseSeeder.php class DatabaseSeeder extends Seeder { public function run() { // Seed the countries $this->call(CountriesTableSeeder::class); // Seed the Time Zones $this->call(TimeZonesTableSeeder::class); // Seed the Languages $this->call(LanguagesTableSeeder::class); } }
Run Migrations and Seed the tables
$ php artisan migrate $ php artisan db:seed
Use
These methods are provided:
Collection Methods
When using Laravel you can work with the Collection Available Methods.
JSON file (Optional)
Use this methods If you want to get all the data from the JSON file:
Countries::allJSON()
: Get all the countries from the JSON file.Languages::allJSON()
: Get all the languages from the JSON file.TimeZones::allJSON()
: Get all the time zones from the JSON file.
Contributing
Thank you for considering contributing to the Laraworld package!. Remember to run PHPUnit tests before sending a new pull request.
License
This package is open-sourced licensed under the MIT license.