From bd56979087e744406a5722039c30113d33635a23 Mon Sep 17 00:00:00 2001 From: almooradi-dev <99311437+almooradi-dev@users.noreply.github.com> Date: Fri, 24 Feb 2023 09:13:53 +0200 Subject: [PATCH] Typo in "tutorial.md" file --- tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();