Laravel package to create and handle feedback forms on your website
Use composer to install the package
composer require ghaff/feedbackRun your migrations
php artisan migrateBoot up your server
php artisan servelocalhost:8000/feedback
Publish the configuration file by running
php artisan vendor:publishYour 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
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.