本文整理汇总了PHP中Contract::findOrFail方法的典型用法代码示例。如果您正苦于以下问题:PHP Contract::findOrFail方法的具体用法?PHP Contract::findOrFail怎么用?PHP Contract::findOrFail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Contract
的用法示例。
在下文中一共展示了Contract::findOrFail方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
// });
Route::get('/', function () {
if (Auth::check()) {
return View::make('index');
} else {
return Redirect::to('login');
}
});
/* View the NDA */
Route::get('nda/{id}', function ($id) {
$contract = Contract::findOrFail($id);
return View::make('nda')->withContract($contract);
});
/* Mail the NDA to a user */
Route::post('nda/{id}/send', function ($id) {
$contract = Contract::findOrFail($id);
return Mail::send('nda', ['contract' => $contract], function ($message) {
return $message->to(Input::get('email'))->subject('NDA contract');
});
});
/* Get the environment of the application*/
Route::get('environment', function () {
return App::environment();
});
/* Route for testing */
Route::any('test', function () {
$repo = new Acme\Users\UserRepository();
return $repo->test();
});
/*
* Custom defined Routes
示例2: show
/**
* Display the specified resource.
* GET /contracts/{id}
*
* @param int $id
* @return Response
*/
public function show($id)
{
return Contract::findOrFail($id);
}