PHPackages                             technicalsimple/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. [Mail &amp; Notifications](/categories/mail)
4. /
5. technicalsimple/contact

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

technicalsimple/contact
=======================

This will send email to admin and save contact query in database.

v1.0.0(4y ago)14MITPHP

Since Dec 10Pushed 4y ago1 watchersCompare

[ Source](https://github.com/technicalsimple/contact-package)[ Packagist](https://packagist.org/packages/technicalsimple/contact)[ RSS](/packages/technicalsimple-contact/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (2)Used By (0)

Contact Us Form Package
=======================

[](#contact-us-form-package)

[![Issues](https://camo.githubusercontent.com/eedde24decf4176691761dc89bc5a455033db703060a30660e880f9a2b3e8bad/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f746563686e6963616c73696d706c652f636f6e746163742d7061636b6167652e7376673f7374796c653d666c61742d737175617265)](https://github.com/technicalsimple/contact-package/issues)[![Stars](https://camo.githubusercontent.com/e237bf5b12fe896f50fd904111924bf262e7969468a12c6a866cd9dc749e8f5f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f746563686e6963616c73696d706c652f636f6e746163742d7061636b6167652e7376673f7374796c653d666c61742d737175617265)](https://github.com/technicalsimple/contact-package/stargazers)

A Powerful package for handling contact us . It will send email to admin and save contact query in database in Laravel. Supports Laravel 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0, and 8.0+.

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

[](#installation)

This package is very easy to set up. There are only couple of steps.

### Composer

[](#composer)

From your projects root folder in terminal run:

Laravel 5.5 and up use:

```
    composer require technicalsimple/contact

```

Laravel 5.4 and below use:

```
    composer require technicalsimple/contact 1.0.0

```

Service Provider
================

[](#service-provider)

- Laravel 5.5 and up Uses package auto discovery feature, no need to edit the config/app.php file.
- Laravel 5.4 and below Add the package to your application service providers in config/app.php file.

    ```
      'providers' => [

          ...

          /**
          * Third Party Service Providers...
          */
          \technicalsimple\Contact\ContactServiceProvider::class,

      ],

    ```

Publish All Assets
==================

[](#publish-all-assets)

```
 php artisan vendor:publish --provider="technicalsimple\Contact\ContactServiceProvider"

```

After publish ContactServiceProvider Goto the app/config/contact.php and change admin email details.

```
