Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.39 KB

README.md

File metadata and controls

35 lines (26 loc) · 1.39 KB

country-casts-laravel

Latest Stable Version Total Downloads Maintainability Test Coverage

Cast country code attributes from ISO3 to ISO2

Installation

composer require brokeyourbike/country-casts-laravel

Usage

use Illuminate\Database\Eloquent\Model;
use BrokeYourBike\CountryCasts\Alpha2Cast;

class Order extends Model
{
    protected $casts = [
        'country_code' => 'string',
        'country_code_alpha2' => Alpha2Cast::class . ':country_code',
    ];
}

Authors

License

Mozilla Public License v2.0