signifly/laravel-addresses

Easily manage addresses in your Laravel app

Downloads

299

Stars

2

Version

v0.4.1

Easily manage addresses in your Laravel app

Latest Version on Packagist Build Status StyleCI Quality Score Total Downloads

The signifly/laravel-addresses package allows you to easily mange addresses in your Laravel app.

Documentation

Until further documentation is provided, please have a look at the tests.

You can install the package via composer:

composer require signifly/laravel-addresses

The package will automatically register itself.

You can publish the migration with:

php artisan vendor:publish --provider="Signifly\Addresses\AddressesServiceProvider" --tag="migrations"

After publishing the migration you can create the addresses table by running the migrations:

php artisan migrate

You can optionally publish the config file with:

php artisan vendor:publish --provider="Signifly\Addresses\AddressesServiceProvider" --tag="config"

This is the contents of the published config file:

return [
    /*
     * The address model.
     */
    'address_model' => \Signifly\Addresses\Models\Address::class,

    /*
     * The name of the table.
     */
    'table_name' => 'addresses',
];

Testing

$ composer test

Security

If you discover any security issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

signifly

Author

signifly