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
After install dingo/api, all my WEB actions (non-API) routes stop to flash messages:
public function create()
{
//I can see the "success" index here
dump(Session::all());
return view('opportunities.create');
}
public function store(OpportunityCreateRequest $request): ?BaseResponse
{
return redirect()->back()->with(['success' => 'hello world!']);
}
Actual Behaviour
After install dingo/api, all my WEB actions (non-API) routes stop to flash messages:
The dump result inside the action "create"
The dump result inside the view "opportunity.create"
routes/web.php
Expected Behaviour
dingo/api should not change the Session and should not change the default behavior of flash messages, including "_old_input" data
The text was updated successfully, but these errors were encountered: