vanilo/address

This package is abandoned and no longer maintained. The author suggests using the vanilo/framework package instead.

Vanilo Address Module

0.3.0 2018-08-11 10:45 UTC

This package is auto-updated.

Last update: 2022-02-01 13:11:11 UTC


README

Deprecated

This module is deprecated and is discontinued as of Vanilo v0.4.

This was the address module for Vanilo until version v0.3.

Travis Packagist version Packagist downloads StyleCI MIT Software License

This module shouldn't be used standalone.

It merely binds Konekt Address with the Vanilo (Address) Contract

Extending

You need to re-register the root Konekt\Address\Contracts\Address contract:

// app/AppServiceProvider.php:

    public function boot()
    {
    	$this->app->concord->registerModel(
        	\Konekt\Address\Contracts\Address::class,
        	\App\Address::class
        );
    }
// app/Address.php
class Address extends \Vanilo\Address\Models\Address
{
	// Tweak the hell out of it
}