コード例 #1
0
 public function run()
 {
     $account = $this->account('digiredo');
     if (env('APP_MULTIPLE_LOCALES')) {
         $account->locales()->attach(Locale::where('slug', 'en')->first());
     }
     $this->roles($account);
     $this->contactInformation($account);
     $this->membershipInvitations($account);
     $account = $this->account('cloudcreations');
     if (env('APP_MULTIPLE_LOCALES')) {
         $account->locales()->attach(Locale::where('slug', 'en')->first());
     }
     $this->roles($account);
     $this->contactInformation($account);
     $this->membershipInvitations($account);
 }