Solve your laravel problems.
In laravel we can use with() along with redirect(), like
with()
redirect()
return redirect('home')->with(['message' => 'Some message');
I want to create some other functions like withError(), withSuccess().
withError()
withSuccess()
How and where to create this ?