alert flashes added to applications

This commit is contained in:
ilmedova 2022-12-01 16:51:17 +05:00
parent 4e33278ed1
commit 088afd97b6
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ public function accept($id){
$entry->save();
//todo fix alert
\Alert::add('success', '<strong>Success!</strong><br>Application is accepted');
\Alert::add('success', '<strong>Success!</strong><br>Application is accepted')->flash();
return redirect()->back();
}
@ -158,7 +158,7 @@ public function refine($id){
//todo fix alert
//todo send email to account clients where not suspended {note, application status message}
\Alert::add('success', '<strong>Success!</strong><br>Application is refined');
\Alert::add('success', '<strong>Success!</strong><br>Application is refined')->flash();
return redirect()->back();
}