Laravel 4.2 is the previous version of the open-source PHP web development MVC framework created by Taylor Otwell.
I am using Laravel (4.2) I am working on a project with an authentication system. I need to insert a first …
mysql laravel laravel-4 laravel-seedingI am trying to implement soft deleting concept. Here is my object: class Post extends Eloquent { /** * The database table used …
laravel laravel-4 eloquent soft-deleteI am working on search filter on checkbox click, with Laravel and Ajax call. So I get results when I …
laravel-4 paginationI have user_id fk column in my table $table->foreign('user_id')->references('id')->…
php laravel laravel-4 database-migrationi am new to laravel, i have code in my controller's __construct like if(Auth::check()) { return View::make('view_…
laravel laravel-4 laravel-routingUsing Laravel 4's Form class, we can create a list using {{ @Form::select('colors', Colors::all()), $color }} Question: How can …
laravel laravel-4 bladeIf you look to laravel official documentation http://laravel.com/docs/4.2/templates It says that giving this layout: <!-- …
php laravel laravel-4 template-engine bladeHow do I pass a hard coded variable to a controller? My route is: Route::group(array('prefix' => $locale), …
php laravel laravel-4 laravel-routing