本文整理汇总了PHP中Position::where方法的典型用法代码示例。如果您正苦于以下问题:PHP Position::where方法的具体用法?PHP Position::where怎么用?PHP Position::where使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Position
的用法示例。
在下文中一共展示了Position::where方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getNodeid
public function getNodeid()
{
$q = Input::get('term');
$user = Position::where('group_id', 4)->where(function ($query) use($q) {
$query->where('name', 'regexp', '/' . $q . '/i')->orWhere('node_code', 'regexp', '/' . $q . '/i');
})->get();
$result = array();
foreach ($user->toArray() as $r) {
$result[] = array('id' => $r['node_code'], 'value' => $r['node_code']);
}
return Response::json($result);
}
示例2: delete
/**
* function name : delete
* edit data Position
* get
*/
public function delete($id)
{
if (Auth::check()) {
$result = Position::where('position_id', $id)->delete();
if ($result) {
return Redirect::to('admin/positions')->with('success_message', 'ลบข้อมูลเรียบร้อยแล้ว');
} else {
return Redirect::to('admin/positions')->with('error_message', 'ไม่สามารถลบข้อมูลได้ กรุณาแจ้งผู้ดูแลระบบ');
}
} else {
return View::make('users.index');
}
}
示例3: getPosition
public static function getPosition($key = null, $val = null)
{
if (is_null($key)) {
$c = Position::get();
self::$position = $c;
return new self();
} else {
$c = Position::where($key, '=', $val)->first();
self::$position = $c;
return $c;
}
}