Install
-
Install via Composer:
composer require gridprinciples/contactable
-
Add the service provider to the providers array in
config/app.php
:GridPrinciples\Contactable\Providers\ContactableServiceProvider::class,
-
Publish the migrations and config file:
php artisan vendor:publish --provider="GridPrinciples\Contactable\Providers\ContactableServiceProvider"
-
Run the migrations:
php artisan migrate
This will add
email_addresses
andphone_numbers
tables to your database. -
Remove the
email
column from yourcreate_users_table
table migration, if applicable.