本文整理汇总了PHP中Unit::lists方法的典型用法代码示例。如果您正苦于以下问题:PHP Unit::lists方法的具体用法?PHP Unit::lists怎么用?PHP Unit::lists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Unit
的用法示例。
在下文中一共展示了Unit::lists方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
/**
* Display a listing of the resource.
* GET /settings
*
* @return Response
*/
public function index()
{
//show the main view
$ingredients = Ingredient::lists('name', 'id');
$units = Unit::lists('symbol', 'id');
return View::make('settings.index')->with('ingredients', $ingredients)->with('units', $units)->with('title', 'Settings');
}
示例2: filterUnits
public function filterUnits()
{
if ($this->hasAccess('admin')) {
$units = Unit::lists('name', 'id');
} elseif ($this->hasAccess('authorize')) {
$units = Unit::where('role_id', '=', $this->role_id)->lists('name', 'id');
} elseif ($this->hasAccess('request')) {
$units = Unit::where('id', '=', $this->unit_id)->lists('name', 'id');
}
return $units;
}