CORS in Laravel 4.1+: https://github.com/barryvdh/laravel-cors/ The laravel-cors package allows you...
Laravel 4 Debugbar: https://github.com/barryvdh/laravel-debugbar This is a package to integrate PH...
Laravel IDE Helper Generator Complete phpDocs, directly from the source This packages generates a...
HttpCache for Laravel 4.1: https://github.com/barryvdh/laravel-httpcache Laravel 4.1 can easily use...
Laravel 4 TwigBridge: https://github.com/barryvdh/laravel-twigbridge This packages adds Twig as a La...
Strip_tags strips the tags, htmlentities converts the html tags, so you can read the tags, but they...
You can't. If you want to allow html, use http://www.php.net/strip_tags
Why not use Eager loading? $users = User::with('language')->get(); If you cache that object, it...
Route::get() is for GET request, Route::post() is for POST request, Route::any() is for all.. When y...
No! Stop! Don't try to 'improve' the password system. It already uses salts and is safe. You are not...
The Laravel portal for problem solving, knowledge sharing and community building.