App\Http\Controllers\NoticesController::show PHP 메소드

show() 공개 메소드

Display the specified resource.
public show ( integer $id ) : Response
$id integer
리턴 Response
    public function show($id)
    {
        $notice = Notice::auth()->desc()->find($id);
        $this->json_or_dd($notice->toArray());
    }