This package allows you to add questionnaires for all users in your Laravel application
This package can be used in Laravel 5.8 or higher.
composer require tjphippen/questionnaire
php artisan vendor:publish --provider='Tjphippen\Questionnaire\QuestionnaireServiceProvider'
The models supplied by this package can be used the same as any other model in a laravel application.
Samples:
use Tjphippen\Questionnaire\Models\Question;
use Tjphippen\Questionnaire\Models\Answer;
// Get all questions
Question::get();
// Get answers for a specific user
Answer::where('user_id', $id)->get();
- Tyson List - questionnaire is a package based off laravel-questionnaire
- Milo Cesar - laravel-questionnaire is a package based off laravel-survey
- All Contributors
The MIT License (MIT). Please see License File for more information.