I have a big problem and I need your help.
I coded a program with Laravel without any problems. But I had a problem. My messages are not transmitted in redirect commands.
// dont work
return redirect()->back()->with('error 110','problem insert to database');
//work
return view('homepage')->with('error 110','problem insert to database');
im very sad; return redirect session not pass.return view session ok not problem;
laravel 8 and livewire.
What do you think is the problem?
Session does not work in return redirect and is not transferred but is transferred in return view.
please help me;