當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Location::firstOrCreate方法代碼示例

本文整理匯總了PHP中app\Location::firstOrCreate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Location::firstOrCreate方法的具體用法?PHP Location::firstOrCreate怎麽用?PHP Location::firstOrCreate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\Location的用法示例。


在下文中一共展示了Location::firstOrCreate方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: run

 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     Location::firstOrCreate(['name' => "1 Yellow Brick Road, Cork City, Cork", 'latitude' => 51.898202, 'longitude' => -8.479321000000001, 'capacity' => "200", 'featured_image' => '/images/sample_images/venues/1.jpg']);
     Location::firstOrCreate(['name' => "2 Yellow Brick Road, Cork City, Cork", 'latitude' => 52, 'longitude' => -9.479321000000001, 'capacity' => "200", 'featured_image' => '/images/sample_images/venues/1.jpg']);
     Location::firstOrCreate(['name' => "3 Yellow Brick Road, Cork City, Cork", 'latitude' => 51.7, 'longitude' => -8.5, 'capacity' => "200", 'featured_image' => '/images/sample_images/venues/1.jpg']);
     Location::firstOrCreate(['name' => "4 Yellow Brick Road, Cork City, Cork", 'latitude' => 51.6, 'longitude' => -8.579321, 'capacity' => "200", 'featured_image' => '/images/sample_images/venues/1.jpg']);
     Location::firstOrCreate(['name' => "5 Yellow Brick Road, Cork City, Cork", 'latitude' => 51.998202, 'longitude' => -8.779320999999999, 'capacity' => "200", 'featured_image' => '/images/sample_images/venues/1.jpg']);
 }
開發者ID:TheJokersThief,項目名稱:Eve,代碼行數:13,代碼來源:LocationSeeder.php

示例2: handle

 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     $raw = array_map('str_getcsv', file('data.csv'));
     $data = array_slice($raw, 1);
     foreach ($data as $row) {
         $location = Location::firstOrCreate(['county' => $this->county($row[0]), 'city' => $this->city($row[1]), 'state' => $this->state($row[0])]);
         $product = Product::create(['name' => $row[2], 'freight' => $this->float($row[4]), 'margin' => $this->float($row[5]), 'delivered_price' => $this->float($row[6]), 'location_id' => $location->id]);
     }
     $this->info(sprintf("Imported %d locations and %d products\r", Location::count(), Product::count()));
 }
開發者ID:baudday,項目名稱:sagar,代碼行數:15,代碼來源:ImportData.php

示例3: run

 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     Location::firstOrCreate(['name' => "The 3 Arena", 'latitude' => 53.347714, 'longitude' => -6.22864783, 'capacity' => 30000]);
     Location::firstOrCreate(['name' => "Lansdowne Road", 'latitude' => 53.335105, 'longitude' => -6.228423, 'capacity' => 400000]);
     Location::firstOrCreate(['name' => "Musgrave Park", 'latitude' => 51.881045, 'longitude' => -8.470948, 'capacity' => 12000]);
 }
開發者ID:TheJokersThief,項目名稱:Eve,代碼行數:11,代碼來源:LocationsTableSeeder.php

示例4: createLocation

 public static function createLocation(Request $request)
 {
     $data = $request->only(['name', 'latitude', 'longitude', 'capacity', 'featured_image']);
     $validator = Validator::make($data, ['name' => 'required', 'latitude' => 'required', 'longitude' => 'required', 'capacity' => 'required|numeric', 'featured_image' => 'image|sometimes']);
     if ($validator->fails()) {
         // If validation fails, return json array of errors
         return Response::json(['errors' => $validator->errors()->all()]);
     }
     $location = Location::firstOrCreate($data);
     return Response::json($location->toArray());
 }
開發者ID:TheJokersThief,項目名稱:Eve,代碼行數:11,代碼來源:ApiController.php


注:本文中的app\Location::firstOrCreate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。