mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-23 19:32:11 +00:00
18 lines
198 B
PHP
Executable File
18 lines
198 B
PHP
Executable File
<?php
|
|
|
|
class DatabaseSeeder extends Seeder {
|
|
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Eloquent::unguard();
|
|
|
|
// $this->call('UserTableSeeder');
|
|
}
|
|
|
|
}
|