how return a message with redirect in laravel code example
Example 1: laravel redirect back with errors and input
return redirect()->back()->withInput();
Example 2: laravel redirect with message to section
//redirct to previous page with message at a specific setion :)
return redirect(url()->previous() .'#comments')->with('success', 'Data Your Comment has been created successfully');