show method for single bookmark

This commit is contained in:
Jonny Barnes 2017-10-10 16:17:29 +01:00
parent f802b7c5c6
commit 8f531d9055

View file

@ -12,4 +12,9 @@ class BookmarksController extends Controller
return view('bookmarks.index', compact('bookmarks'));
}
public function show(Bookmark $bookmark)
{
return view('bookmarks.show', compact('bookmark'));
}
}