本文整理汇总了PHP中app\Country::firstOrNew方法的典型用法代码示例。如果您正苦于以下问题:PHP Country::firstOrNew方法的具体用法?PHP Country::firstOrNew怎么用?PHP Country::firstOrNew使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Country
的用法示例。
在下文中一共展示了Country::firstOrNew方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: SaveCountryToDatabase
public function SaveCountryToDatabase($data)
{
//delete from database old, write to database new
DB::transaction(function () use($data) {
$country = Country::firstOrNew(['country_code' => $data['country_code']]);
foreach ($data as $column => $value) {
$country->{$column} = $value;
}
$country->save();
});
}
示例2: fetchAllCountryInfo
public static function fetchAllCountryInfo($currentSheet, $force = false)
{
$highestRow = $currentSheet->getHighestRow();
// 取得总行数
$highestColumm = $currentSheet->getHighestColumn();
// 取得总列数
$highestColumm = PHPExcel_Cell::columnIndexFromString($highestColumm);
for ($row = 2; $row <= $highestRow; $row++) {
$item = array();
//$item = array('number 0' =>'', 'belongs 1' => '', 'country 2' => '');
for ($column = 0; $column < $highestColumm; $column++) {
$columnName = PHPExcel_Cell::stringFromColumnIndex($column);
$item[$column] = $currentSheet->getCellByColumnAndRow($column, $row)->getValue();
}
if (!$item[0] && !$item[1]) {
break;
}
if (!$item[2]) {
continue;
}
$country = Country::firstOrNew(['country' => $item[2]]);
$country->belongs = $item[1];
$country->save();
}
}
示例3: store
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
$data = $request->all();
$clubs = json_decode($data['clubs'], true);
$country = Country::firstOrNew(['name' => $data['country']]);
$country->save();
$competition = Competition::firstOrNew(['name' => $data['name'], 'country_id' => $country->id, 'type' => $data['type']]);
if ($country->competitions()->where(['id' => $competition->id])->get()->count() == 0) {
$country->competitions()->save($competition);
}
Auth::user()->competitions()->save($competition);
$season = Season::firstOrNew(['name' => $data['season']]);
$season->save();
if ($season->competitions()->where(['id' => $competition->id])->get()->count() == 0) {
$season->competitions()->attach($competition->id);
}
$competition->clubsByName()->wherePivot('season_id', '=', $season->id)->detach();
foreach ($clubs as $club) {
$competition->storeClub($club, $country, $season);
}
$num = count($clubs);
if ($num % 2 != 0) {
$clubs[$num++] = $competition->storeClub(['name' => '//no-name', 'location' => '//no-loc', 'num' => $num], $country, $season);
}
$settings = Setting::firstOrNew(['competition_id' => $competition->id, 'season_id' => $season->id]);
$settings->save();
return $competition->storeCompetition($season, $num);
}
示例4: create
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return User
*/
protected function create(array $data)
{
$country = Country::firstOrNew(['name' => $data['country']]);
$country->save();
$location = Location::firstOrNew(['name' => $data['location'], 'country_id' => $country->id]);
if ($country->locations()->where(['id' => $location->id])->get()->count() == 0) {
$country->locations()->save($location);
}
$person = Person::firstOrNew(['first_name' => $data['first_name'], 'last_name' => $data['last_name'], 'location_id' => $location->id]);
if ($location->person()->where(['id' => $person->id])->get()->count() == 0) {
$location->person()->save($person);
}
return User::create(['person_id' => $person->id, 'email' => $data['email'], 'password' => bcrypt($data['password']), 'type' => 'member']);
}