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

show() public method

public show ( App\Article $article )
$article App\Article
    public function show(Article $article)
    {
        if (Request::wantsJson()) {
            return $article;
        }
        return view('articles.show', compact('article'));
    }