ghaff/feedback

Laravel package to create and handle feedback forms

v1.0.2 2019-12-01 17:23 UTC

This package is auto-updated.

Last update: 2024-04-29 04:00:53 UTC


README

Stars Issues

Feedback form package

Laravel package to create and handle feedback forms on your website

Installation

Use composer to install the package

  composer require ghaff/feedback

Usage

Run your migrations

  php artisan migrate

Boot up your server

    php artisan serve

Visit the url

localhost:8000/feedback

Configuration

Publish the configuration file by running

  php artisan vendor:publish

Your configuration file would look like this

  
    return [
      'send_email_to' => 'ghaff@gmail.com'  
    ];

You can add your email here to determine which email to send the feedbacks to

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT