Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.44 KB

File metadata and controls

44 lines (33 loc) · 1.44 KB

Address Module

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
}