定制 ferdirn/laravel-id-countries 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ferdirn/laravel-id-countries

最新稳定版本:v2.0

Composer 安装命令:

composer require ferdirn/laravel-id-countries

包简介

Laravel ID Countries is a package for Laravel to supply all countries data to table countries including country name, iso country code, capital, currency, and calling code.

README 文档

README

Total Downloads Latest Stable Version Latest Unstable Version

Laravel ID Countries is a package for Laravel to supply all countries data to table countries including country name, iso country code, capital, currency, and calling code.

Installation

Add ferdirn/laravel-id-countries to composer.json.

"ferdirn/laravel-id-countries": "dev-master"

or in console type command

composer require ferdirn/laravel-id-countries:dev-master

Run composer update to pull down the latest version of laravel packages.

Edit app/config/app.php file and add to providers

'providers' => array(
    'Ferdirn\Countries\CountriesServiceProvider',
)

also add to 'aliases'

'aliases' => array(
    'Countries' => 'Ferdirn\Countries\CountriesFacade',
)

Model

If you want to edit the configuration then publish the config. This is an optional step and unrecommended to do, it will show the table name and you do not need to alter it if you do not know what you are doing. The default table name is countries, if it suits you, leave it. But if you know what you are doing, you can run the following command

$ php artisan config:publish ferdirn/laravel-id-countries

Then you need to generate the migration file. Run the following command:

$ php artisan countries:migration

This process will generate <timestamp>_create_countries_table.php migration file and a CountriesSeeder.php seed file.

Insert the following code in the seeds/DatabaseSeeder.php

//Seed the countries
$this->call('CountriesSeeder');
$this->command->info('Seeded the countries!');

Finally, you can run the artisan migrate command with seed option to include the seed data:

$ php artisan migrate --seed

Now you have a table 'countries' with all country data inside the table. Congratulation!

统计信息

  • 总下载量: 682
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 4
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 3
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-11-10