當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Report::findOrFail方法代碼示例

本文整理匯總了PHP中Report::findOrFail方法的典型用法代碼示例。如果您正苦於以下問題:PHP Report::findOrFail方法的具體用法?PHP Report::findOrFail怎麽用?PHP Report::findOrFail使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Report的用法示例。


在下文中一共展示了Report::findOrFail方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: dismiss

 public function dismiss()
 {
     // check we're logged in
     if (!Auth::check()) {
         Session::flash('redirect', URL::route('reports'));
         return Redirect::route('login');
     }
     $reportId = Input::get('report');
     $report = Report::findOrFail($reportId);
     $report->delete();
     return Redirect::route('reports')->with('success', 'Report dismissed');
 }
開發者ID:Lord-Simon,項目名稱:MangaIndex,代碼行數:12,代碼來源:ReportsController.php

示例2: postUpdate

 public function postUpdate()
 {
     $reports = Input::get('reports');
     if (is_null($reports)) {
         Redirect::back();
     }
     foreach ($reports as $r) {
         $report = Report::findOrFail($r['report']);
         $report->fill($r);
         $report->save();
     }
     return App::make('TournamentsController')->ranking(Tournament::findOrFail(Input::get('tournament')));
 }
開發者ID:romainmasc,項目名稱:jackmarshall,代碼行數:13,代碼來源:ReportsController.php

示例3: edit

 /**
  * Show the form for editing the specified reportgrouping.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($report_id, $id)
 {
     $reportgrouping = ReportGrouping::findOrFail($id);
     if (Request::ajax()) {
         return $this->_ajax_denied();
     }
     if (!$reportgrouping->canUpdate()) {
         return _access_denied();
     }
     $report = Report::findOrFail($report_id);
     return View::make('reportgroupings.edit', compact('reportgrouping', 'report_id', 'report'));
 }
開發者ID:k4ml,項目名稱:laravel-base,代碼行數:18,代碼來源:ReportGroupingsController.php

示例4: show

 /**
  * Display the specified resource.
  * GET /reports/{id}
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     return Report::findOrFail($id);
 }
開發者ID:anildukkipatty,項目名稱:maurice-tool-laravel,代碼行數:11,代碼來源:ReportsController.php

示例5: destroy

 /**
  * Remove the specified report from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $report = Report::findOrFail($id);
     if (!$report->canDelete()) {
         return $this->_access_denied();
     }
     $report->delete();
     if (Request::ajax()) {
         return Response::json($this->deleted_message);
     }
     return Redirect::action('ReportsController@index')->with('notification:success', $this->deleted_message);
 }
開發者ID:k4ml,項目名稱:laravel-base,代碼行數:18,代碼來源:ReportsController.php

示例6: show

 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     $report = $this->report->findOrFail($id);
     return View::make('reports.show', compact('report'));
 }
開發者ID:Atiragram,項目名稱:poit-labs,代碼行數:11,代碼來源:ReportsController.php


注:本文中的Report::findOrFail方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。