本文整理汇总了PHP中app\Item::whereId方法的典型用法代码示例。如果您正苦于以下问题:PHP Item::whereId方法的具体用法?PHP Item::whereId怎么用?PHP Item::whereId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Item
的用法示例。
在下文中一共展示了Item::whereId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: destroy
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return Response
*/
public function destroy($id)
{
$item = Item::whereId($id)->firstOrFail();
$name = $item->name;
$item->delete();
return redirect()->route('items.index')->with('status', 'The item ' . $name . ' has been deleted!');
}
示例2: updatebulkPackaging
public function updatebulkPackaging($item_id)
{
$iteminfo = Item::whereId($item_id)->first();
$id = Request::input('id');
$bulkid = BulkPackaging::where('id', $id)->first();
$getBaseUnitid = count(BulkUnit::where('id', $bulkid->uom_id)->get());
if ($getBaseUnitid > 0) {
return redirect()->action('Operations\\ItemController@itemProfile', $item_id)->with('message', 'cannot be update');
} else {
$updateBulk = BulkPackaging::where('id', $id)->first();
$input = Input::except('_token');
$updateBulk->fill($input);
$updateBulk->save();
return redirect()->action('Operations\\ItemController@itemProfile', $item_id)->with('message', 'Bulk Packaging updated');
}
}