コード例 #1
0
 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($code)
 {
     if (Gate::denies('show-document')) {
         abort(403);
     }
     $document = Document::getByPublicCode($code);
     return $this->edit($document);
 }