Download the PHP package macrominds/laravel-choice without Composer
On this page you can find all versions of the php package macrominds/laravel-choice. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download macrominds/laravel-choice
More information about macrominds/laravel-choice
Files in macrominds/laravel-choice
Package laravel-choice
Short Description A modal choice dialogue for laravel
License MIT
Informations about the package laravel-choice
Modal user choice dialogue for laravel
If you have an action that needs to be confirmed before proceeding, or you want to let the user choose from multiple options, then this solution might just be exactly what you are looking for.
Example
The user has chosen to delete a person. That means that all upcoming events, hosted by this person, need to be canceled. But you don't want to cancel them silently. You want to be polite and ask the user first:
Simply return the Choice where you would normally return the redirect()
in your Controller.
Depending on the choice of the user, she will be redirected either
back to the previous page (standard Option::makeCancel
behaviour) or
to any route of your liking. You are not limited to two options.
Installation
composer require macrominds/laravel-choice
.
Usage
You should call php artisan vendor:publish --tag=laravel-choice
.
This will add the customizable views to resources/views/vendor/choice/*
and the minimalistic
styling resources/assets/sass/vendor/choice/_choice.scss
to your project.
You should @import "vendor/choice/choice";
in your app.scss
afterwards.
In your master blade view, below all visible page elements, just before the end of your
</body>
or just before the <script>
s at the bottom, add the following line:
Next? Nothing. You are ready to go. Just replace a return redirect()
statement
in your Controller with return Choice::make (//...
.
TODO
- Add some documentation
- Make php5.6 compatible