diff --git a/tutorial.md b/tutorial.md index 5ffab6c..dfabf0c 100644 --- a/tutorial.md +++ b/tutorial.md @@ -24,9 +24,9 @@ First, we need a route to a page where we will present a link for our Instagram ``` //routes file // You can leave off the ->middleware('auth') part for now if you don't want to bother with restricting access for now -Route::get('instagram-get-auth', 'InstgramAuthController@show')->middleware('auth'); +Route::get('instagram-get-auth', 'InstagramAuthController@show')->middleware('auth'); -//in InsatgramAuthController.php +//in InstagramAuthController.php public function show() { $profile = \Dymantic\InstagramFeed\Profile::where('username', 'michael')->first();