├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── config └── config.php ├── database └── migrations │ ├── 2020_01_01_000001_create_contacts_table.php │ └── 2020_01_01_000002_create_contact_relations_table.php ├── phpstan.neon.dist └── src ├── Console └── Commands │ ├── MigrateCommand.php │ ├── PublishCommand.php │ └── RollbackCommand.php ├── Models └── Contact.php ├── Providers └── ContactsServiceProvider.php └── Traits └── HasContacts.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/config/config.php -------------------------------------------------------------------------------- /database/migrations/2020_01_01_000001_create_contacts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/database/migrations/2020_01_01_000001_create_contacts_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_01_000002_create_contact_relations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/database/migrations/2020_01_01_000002_create_contact_relations_table.php -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/Console/Commands/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/src/Console/Commands/MigrateCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/PublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/src/Console/Commands/PublishCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/RollbackCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/src/Console/Commands/RollbackCommand.php -------------------------------------------------------------------------------- /src/Models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/src/Models/Contact.php -------------------------------------------------------------------------------- /src/Providers/ContactsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/src/Providers/ContactsServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/HasContacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-contacts/HEAD/src/Traits/HasContacts.php --------------------------------------------------------------------------------