App\Http\Controllers\NoticesController::show PHP Method

show() public method

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