コード例 #1
0
 public function run()
 {
     if (Country::all()->count() > 0) {
         return;
     }
     Country::create(array('name' => 'Malaysia'));
     Country::create(array('name' => 'Singapore'));
     Country::create(array('name' => 'Brunei'));
 }