PHPackages                             binomedev/contact - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. binomedev/contact

Abandoned → [binomeway/nova-contact-tool](/?search=binomeway%2Fnova-contact-tool)ArchivedLibrary

binomedev/contact
=================

Contact

00PHP

Since Feb 25Pushed 4y agoCompare

[ Source](https://github.com/binomedev/contact)[ Packagist](https://packagist.org/packages/binomedev/contact)[ RSS](/packages/binomedev-contact/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (2)Used By (0)

Contact
=======

[](#contact)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f73de9a61d063c18863c475c70f8a46c271fb7dac977b034cdfad1bcfc12b768/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f62696e6f6d656465762f636f6e746163742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/binomedev/contact)[![GitHub Tests Action Status](https://camo.githubusercontent.com/84ec21028d2243fdc417d108be9b03c391177b69bab74d6b166e78b6ea964e99/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f62696e6f6d656465762f636f6e746163742f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/binomedev/contact/actions?query=workflow%3ATests+branch%3Amaster)[![Total Downloads](https://camo.githubusercontent.com/ef68fe3c4da090c69977401c56a92c24cbec35f96bfaf8fb5d5e831bd6e8f105/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f62696e6f6d656465762f636f6e746163742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/binomedev/contact)

A package to manage contact information such as: email, phone, socials and forms.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require binomedev/contact
```

Install nova-settings

```
composer require optimistdigital/nova-settings
```

Add the following line to the boot method within the NovaServiceProvider.php in order to be able to modify contact data withing Nova.

```
use Binomedev\Contact\ContactSettings;

// NovaServiceProvider.php
public function boot()
{
    // ...
    ContactSettings::boot();
}
```

You can publish and run the migrations with:

```
php artisan vendor:publish --provider="Binomedev\Contact\ContactServiceProvider" --tag="contact-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --provider="Binomedev\Contact\ContactServiceProvider" --tag="contact-config"
```

This is the contents of the published config file:

```
return [
    'default_email_receiver' => env('MAIL_FROM_ADDRESS'),
    'save_messages' => true,

    'emails' => [
        // contact@domain.com
    ],

    'numbers' => [
        // +32 1111  111 111
    ],

    'socials' => [

    ],

    'addresses' => [
        [
            'name' => 'Office',
            'street' => '',
            'number' => '',
            'postcode' => '',
            'city' => '',
            'country' => '',
        ],
    ],
    'schedule' => [
        [
            'days' => '',
            'hours' => '',
        ]
    ],
];
```

Usage
-----

[](#usage)

```
use Binomedev\Contact\ContactFacade;
// Subscribe a new email
$subscriber = ContactFacade::subscribe(
    $data['email'],
    $data['name'],
    $data['phone'],
);
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Codrin Axinte](https://github.com/codrin-axinte)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/f68765a77418f8056ef39ed2491f2b2b544a58166a462bf3d5f1332d539241d4?d=identicon)[codrin-axinte](/maintainers/codrin-axinte)

---

Top Contributors

[![codrin-axinte](https://avatars.githubusercontent.com/u/6564791?v=4)](https://github.com/codrin-axinte "codrin-axinte (25 commits)")

### Embed Badge

![Health badge](/badges/binomedev-contact/health.svg)

```
[![Health](https://phpackages.com/badges/binomedev-contact/health.svg)](https://phpackages.com/packages/binomedev-contact)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
