Top "Laravel-4" questions

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

Sublime text autocompletion for Laravel

Are there any plugins available to get Laravel auto completion and Laravel Blade template beautification in Sublime Text 3? I have …

laravel laravel-4 sublimetext3 blade autosuggest
Advanced whereNotNull statement in Laravel

Is it possible to do the following in Laravel 4? ... DB::table('myTable') ->select(DB::raw($columnNames)) ->…

laravel laravel-4 query-builder
Laravel : Migrations & Seeding for production data

My application needs a pre registered data set to work. So i need to insert them in the database when …

php database laravel laravel-4 database-migration
Why does phpunit not show any errors in the console

I'm using phpunit with Laravel 4 framework. Why is it that when there's a PHP error during the tests, no error …

php tdd phpunit laravel laravel-4
Get all users with role in Laravel

I'm working in this Laravel project which has this structure users: id | first_name |... roles: id | name assigned_roles: id | …

php laravel laravel-4 eloquent roles
Carbon in Laravel 4 InvalidArgumentException - Unexpected data found. Trailing data

I'm trying to get an Eloquent query result for DB::raw("DATE_FORMAT(created_at, '%m-%d-%Y %r') …

php mysql laravel-4 php-carbon
VueJs how to make pagination with limiter and range..?

I have code like this : Im stuck trying to create a pager with vuejs, so I was wonder if anyone …

javascript jquery laravel-4 pagination vue.js
laravel migration re-organising column order

When you create a new column in a table you can use the ->after('column name') to dictate …

laravel-4 eloquent fluent
php artisan migrate : [PDOException] could not find driver

My system config is Ubuntu 14.04 + XAMPP + Laravel 4 installed mysql driver is configured on /opt/lampp/htdocs/larva/app/config/database.…

laravel laravel-4 laravel-artisan artisan-migrate
How to save entries in many to many polymorphic relationship in Laravel?

I have an Org model and a Tag model. I want to associate tags with organizations. My database tables and …

laravel-4 eloquent polymorphic-associations