Skip to content

Commit 88fe405

Browse files
authored
fix flash message in ArticleController update()
1 parent a5997bc commit 88fe405

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)