当前位置: 首页>>代码示例>>PHP>>正文


PHP Country::select方法代码示例

本文整理汇总了PHP中app\Country::select方法的典型用法代码示例。如果您正苦于以下问题:PHP Country::select方法的具体用法?PHP Country::select怎么用?PHP Country::select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\Country的用法示例。


在下文中一共展示了Country::select方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getCountries

 /**
  * Fetch countries from database
  *
  * @param  bool
  *
  * @return Illuminate\Database\Eloquent\Collection (of Country)
  */
 protected function getCountries($withTrashed)
 {
     $countries = Country::select('id', 'iso_3166_2', 'name')->orderBy('name');
     if ($withTrashed) {
         $countries->withTrashed();
     }
     return $countries->get();
 }
开发者ID:nerea91,项目名称:laravel,代码行数:15,代码来源:SetupCountriesCommand.php

示例2: countries

 public function countries()
 {
     return Country::select("id", "name")->lists("name", "id");
 }
开发者ID:nirlewin,项目名称:test,代码行数:4,代码来源:UsersnewsController.php

示例3: getAll

 public static function getAll()
 {
     $countries = Country::select('code', 'name')->get();
     return $countries;
 }
开发者ID:vampirethura,项目名称:modelvillage,代码行数:5,代码来源:Country.php

示例4: getCountry

 public static function getCountry()
 {
     $arr_country = Country::select('name', 'id')->get()->toArray();
     return $arr_country;
 }
开发者ID:kamitori,项目名称:khuongnhi2,代码行数:5,代码来源:Country.php

示例5: index

 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $countries = Country::select('id', 'name', 'full_name', 'capital', 'currency', 'currency_symbol')->orderBy('name')->get();
     return View('admin.countries', ['countries' => $countries]);
 }
开发者ID:zangee3,项目名称:avs,代码行数:10,代码来源:CountriesController.php


注:本文中的app\Country::select方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。