コード例 #1
0
ファイル: AuthorsController.php プロジェクト: appkr/api
 /**
  * Display the specified resource.
  *
  * @param  int $id
  * @return \Illuminate\Contracts\Http\Response
  */
 public function show($id)
 {
     return json()->setMeta($this->meta)->withItem($this->model->findOrFail($id), new AuthorTransformer());
 }