https://github.com/andreaselia/laravel-feedback
A pluggable feedback components with a clean, easy to use dashboard
https://github.com/andreaselia/laravel-feedback
Last synced: about 1 year ago
JSON representation
A pluggable feedback components with a clean, easy to use dashboard
- Host: GitHub
- URL: https://github.com/andreaselia/laravel-feedback
- Owner: andreaselia
- License: mit
- Created: 2021-02-21T16:13:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-10T14:18:30.000Z (about 4 years ago)
- Last Synced: 2024-11-13T06:31:04.164Z (over 1 year ago)
- Language: PHP
- Size: 2.21 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Feedback
[](//packagist.org/packages/andreaselia/feedback)
Easily collect page view feedback with a beautifully simple to use dashboard.

## Installation
Install the package:
```bash
composer require andreaselia/feedback
```
Publish the config file and assets:
```bash
php artisan vendor:publish --provider="AndreasElia\Feedback\FeedbackServiceProvider"
```
Don't forget to run the migrations:
```bash
php artisan migrate
```
Publish the public assets:
```bash
php artisan vendor:publish --tag=feedback-assets
```
Add the following blade directives to the `` section of the template you'd like the feedback widget to show up on:
```php
@feedbackStyles
@feedbackScripts
```
## Contributing
You're more than welcome to submit a pull request, or if you're not feeling up to it - create an issue so someone else can pick it up.