Skip to content

Instantly share code, notes, and snippets.

@Vheissu
Created September 1, 2014 05:43
Show Gist options
  • Save Vheissu/fa6a8203febf9ec9f506 to your computer and use it in GitHub Desktop.
Save Vheissu/fa6a8203febf9ec9f506 to your computer and use it in GitHub Desktop.
<?php
class DatabaseSeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Eloquent::unguard();
$this->call('RoleTableSeeder');
$this->command->info('The roles table has been seeded');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment