当前位置: 首页>>代码示例>>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;未经允许,请勿转载。