Download the PHP package cyvelnet/laravel5-inputpipe without Composer
On this page you can find all versions of the php package cyvelnet/laravel5-inputpipe. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cyvelnet/laravel5-inputpipe
More information about cyvelnet/laravel5-inputpipe
Files in cyvelnet/laravel5-inputpipe
Package laravel5-inputpipe
Short Description A simple way to format user input for laravel 5
License MIT
Informations about the package laravel5-inputpipe
Laravel5-InputPipes
We all face the problems when user submit a form, and all these form data is a mess, sometime we even wanted to trim the inputs, cast them, and reformat them, in fact it is not the hardest thing in the world, but these small tasks really make our code look lengthy, and InputPipes comes into play.
$inputs = Pipe::make(Input::all(), ['email' => 'trim|lower', 'name' => 'trim|ucword'])->get();
This single line of code simply the time we spend on formatting input.
Require this package with composer with the following command:
composer require cyvelnet/laravel5-inputpipe
Add the ServiceProvider to the providers array in config/app.php
Cyvelnet\InputPipe\InputPipeServiceProvider::class
and register Facade
Cyvelnet\InputPipe\Facades\PipeFacade::class
Available Pipes
- trim
- snake (snake case)
- camel (camel case)
- lower (lower case)
- upper (upper case)
- ucword
- slug
- ... and more coming soon or a PR to add general pipes
Extend functionality
Sometime we wanted to add some logic which is currently not provided or not a general scope, no worry you can extend it to match you usage
Pipe::extend('sample', function ($data, $parameters) { return $data; });
The above scenario is perfectly fine, if only a small number of extra functionality to add on. When extensions get crowded, it is better to organize them into class.
Then register you class with
Pipe::extra(function($data, $pipes) { return new CustomPipes($data, $pipes); });
Finally trigger your pipes
$inputs = Pipe::make(Input::only('foo', 'bar'), ['foo', 'bar'])->get();
To Do
- Laravel5 FormRequest like class to store the rules ?