I\'m importing a bunch of csv entries in my database with Laravel 4.
I can\'t really point at one column that has to be unique, it\'s a combination of 5 columns that
You can combine:
$table->unique( array('email','name') );
And pretty much everything in Laravel will accept arrays to do whatever you need to with 'more than one'.