Top "Laravel-4" questions

Laravel 4.2 is the previous version of the open-source PHP web development MVC framework created by Taylor Otwell.

Laravel: How to get last N entries from DB

I have table of dogs in my DB and I want to retrieve N latest added dogs. Only way that …

php database laravel laravel-4 eloquent
Incrementing dates with Carbon

I'm trying to create an array of blackout dates for a reservation system in Laravel 4. There is one test row …

php laravel-4 php-carbon
Laravel 4 All Routes Except Home Result in 404 Error

I installed Laravel 4 using Composer and also set up a virtual host. Currently, only the root route is working: <?…

laravel laravel-4 routing http-status-code-404 laravel-routing
How to filter a pivot table using Eloquent?

I'm using a pivot table on the project I'm working with to get works of users. E.g: User::find(1)…

laravel laravel-4 filtering eloquent pivot-table
Add sql table column before or after specific other column - by migrations in Laravel 4.1

Table 'users': |id|name|address|post_code|deleted_at|created_at| and I want add column 'phone_nr' somewhere between …

laravel laravel-4 database-migration
Laravel: Controller does not exist

I added new controller in /app/controllers/admin/ folder and added the route in /app/routes.php file as well. …

laravel-4 controller autoload
Laravel Custom Model Methods

Whenever I add additional logic to Eloquent models, I end up having to make it a static method (i.e. …

php laravel laravel-4 eloquent facade
Saving related records in laravel

I have users, and users belong to a dealership. Upon user registration, I'm trying to save a new user, and …

laravel laravel-4 one-to-many eloquent
How can I install mcrypt under PHP7? Laravel needs it

Since Laravel4 requires mcrypt extension, and PHP7 doesn't seem to have mcrypt extension, is there any workaround for this to …

php laravel laravel-4 php-7 mcrypt
Select box with first option empty

Does anybody know how can I set in my select box the first option to empty value? I'm getting the …

php laravel drop-down-menu laravel-4 options