laravel eloquent inserts empty record to database

Solution:

Fillable is an array of strings, so each field, should be on its own index like:

protected $fillable = array('first_name', 'last_name', 'email');