Skip to content

Commit 19e5cc9

Browse files
authored
Merge pull request #70 from behindthep/fix-typo
fix flash message in ArticleController update()
2 parents a5997bc + 88fe405 commit 19e5cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/ArticleController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function update(Request $request, Article $article)
9292
$article->save();
9393
return redirect()
9494
->route('articles.index')
95-
->with('success', 'Article created successfully');
95+
->with('success', 'Article updated successfully');
9696
}
9797

9898
/**

0 commit comments

Comments
 (0)