Laravel 4.2 is the previous version of the open-source PHP web development MVC framework created by Taylor Otwell.
Given the following code: DB::table('users')->get(); I want to get the raw SQL query string that …
php sql laravel laravel-4 laravel-query-builderWhat is the correct way to remove a package from Laravel using composer? So far I've tried: Remove declaration from …
laravel laravel-4 package composer-php uninstallationI am trying to redirect to the previous page with a message when there is a fatal error. App::fatal(…
laravel laravel-5 laravel-4When trying to create a new laravel project, The following error appears on the CLI: Could not open input file: …
php laravel laravel-4 laravel-artisanI can't figure out how to add a new column to my existing database table using the Laravel framework. I …
php laravel laravel-4 laravel-migrationsI am using Laravel 4. I would like to access the current URL inside an @if condition in a view using …
laravel laravel-4 laravel-bladeI'm getting the following error "trying to get a property of a non-object" when I submit a form to add …
php authentication laravel laravel-4I'm reading the Laravel Blade documentation and I can't figure out how to assign variables inside a template for use …
php laravel laravel-4 laravel-blade