本文整理汇总了PHP中MenuItem::findOrFail方法的典型用法代码示例。如果您正苦于以下问题:PHP MenuItem::findOrFail方法的具体用法?PHP MenuItem::findOrFail怎么用?PHP MenuItem::findOrFail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MenuItem
的用法示例。
在下文中一共展示了MenuItem::findOrFail方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: edit
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return Response
*/
public function edit($id)
{
$menuItem = MenuItem::findOrFail($id);
/*return View::make('menu.edit')->withMenuItem($menuItem);*/
$this->layout->title = "Modifier cet onglet du menu";
$this->layout->main = View::make('dash')->nest('content', 'menu.edit', compact('menuItem'));
}
示例2: getItemDestroy
public function getItemDestroy($id)
{
try {
$item = MenuItem::findOrFail($id);
$menu_id = $item->menu_id;
foreach ($item->children as $child) {
$child->parent_id = $item->parent_id;
$child->save();
}
$item->delete();
return Redirect::to(_l(URL::action('MenuController@getEdit') . "/" . $menu_id))->with('message', Lang::get('admin.menuItemDeleted'))->with('notif', 'success');
} catch (Exception $e) {
return Redirect::to(_l(URL::action('MenuController@getIndex')))->with('message', Lang::get('admin.noSuchMenuItem'))->with('notif', 'danger');
}
}
示例3: update
/**
* Update the specified resource in storage.
* PUT /menuitems/{id}
*
* @param int $id
* @return Response
*/
public function update($id)
{
$menuitem = MenuItem::findOrFail($id);
$data = Input::all();
// dd($data);
$validator = Validator::make($data, MenuItem::$rules);
if ($validator->fails()) {
return Redirect::back()->withErrors($validator)->withInput();
}
$menuitem->update($data);
// Jika dirubah menjadi child dan memiliki child dibawahnya (jika ada) maka akan dibuat top level
if ($data['parent_id'] != '0') {
if (count($menuitem->childs())) {
foreach ($menuitem->childs as $child) {
$child->parent_id = 0;
$child->save();
}
}
}
return Redirect::route('admin.menus.index')->with("message", "Data berhasil disimpan");
}