You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
? 'Thank you for submitting, unfortunately we can\'t accept every submission. You\'ll only hear back from us when we accept your article.'
122
+
: 'Article successfully created!'
123
+
);
120
124
121
125
return$request->wantsJson()
122
126
? ArticleResource::make($article)
@@ -151,9 +155,9 @@ public function update(ArticleRequest $request, Article $article)
151
155
$article = $article->fresh();
152
156
153
157
if ($wasNotPreviouslySubmitted && $request->shouldBeSubmitted()) {
154
-
$this->success('articles.submitted');
158
+
$this->success('Thank you for submitting, unfortunately we can\'t accept every submission. You\'ll only hear back from us when we accept your article.');
155
159
} else {
156
-
$this->success('articles.updated');
160
+
$this->success('Article successfully updated!');
157
161
}
158
162
159
163
return$request->wantsJson()
@@ -167,7 +171,7 @@ public function delete(Request $request, Article $article)
0 commit comments