LaravelPackages.net
Acme Inc.
Toggle sidebar
leapfinder/laravel-questionnaire

A very simple questionnaire for a laravel 5.8+ website or application

252
4
v1.0.0
About leapfinder/laravel-questionnaire

leapfinder/laravel-questionnaire is a Laravel package for a very simple questionnaire for a laravel 5.8+ website or application. It currently has 4 GitHub stars and 252 downloads on Packagist (latest version v1.0.0). Install it with composer require leapfinder/laravel-questionnaire. Discover more Laravel packages by leapfinder or browse all Laravel packages to compare alternatives.

Last updated

Add questionnaires to your Laravel application

This package allows you to add questionnaires for all users in your Laravel application

Installation

This package can be used in Laravel 5.8 or higher.

composer require leapfinder/laravel-questionnaire
php artisan vendor:publish --provider='LeapFinder\Questionnaire\QuestionnaireServiceProvider'

Usage

The models supplied by this package can be used the same as any other model in a laravel application.

Samples:

use LeapFinder\Questionnaire\Models\Question;
use LeapFinder\Questionnaire\Models\Answer;

// Get all questions
Question::get();

// Get answers for a specific user
Answer::where('user_id', $id)->get();

Credits

License

The MIT License (MIT). Please see License File for more information.

Star History Chart