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


PHP Stock::findOrFail方法代码示例

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


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

示例1: update

 /**
  * Update the specified stock in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     $stock = Stock::findOrFail($id);
     $validator = Validator::make($data = Input::all(), Stock::$rules);
     if ($validator->fails()) {
         return Redirect::back()->withErrors($validator)->withInput();
     }
     $stock->update($data);
     return Redirect::route('stocks.index');
 }
开发者ID:kenkode,项目名称:xaraerp,代码行数:16,代码来源:StocksController.php

示例2: update

 /**
  * Update the specified stock in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     $stock = Stock::findOrFail($id);
     $validator = Validator::make($data = Input::all(), Stock::$rules);
     if ($validator->fails()) {
         return Redirect::back()->withErrors($validator)->withInput();
     }
     $stock->item = Input::get('item');
     $stock->selling_price = Input::get('selling_price');
     $stock->purchase_price = Input::get('purchase_price');
     $stock->quantity = Input::get('quantity');
     $stock->status = Input::get('status');
     $stock->account = Input::get('account');
     $stock->update();
     return Redirect::route('purchases.index');
 }
开发者ID:kenkode,项目名称:gasexpress,代码行数:22,代码来源:PurchasesController.php

示例3: show

 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     $stock = $this->stock->findOrFail($id);
     return View::make('stocks.show', compact('stock'));
 }
开发者ID:maldewar,项目名称:jidou,代码行数:11,代码来源:StocksController.php

示例4: deleteAction

 public function deleteAction()
 {
     $stockObjnew = new Stock();
     $new = Input::all();
     if ($stockObjnew->validate(Input::get($this->key), $new, 3)) {
         $object = Stock::findOrFail(Input::get($this->key));
         $object->delete();
     }
     return Redirect::route($this->routeIndex);
 }
开发者ID:alejandromorg,项目名称:Inventario,代码行数:10,代码来源:StockController.php


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