How to do Return Redirect Back to the page in Laravel

In Laravel, we have an option to return back to the page after we run a POST or GET request and that’s very simple to do.

in this post, i will show you how to simply do that also i will show you how to send a response with it.

So In the controller, you have to add the return code like this

return redirect()->back();

so We are using the back() function it will return back to where we are.

so what if you want to send a response with that like a success or error message

return redirect()->back()->with('success', 'Post Created Successfully');

Like this.



So in the view part, you can display the success message as an alert, Use this code as a template

@if (\Session::has('success'))
 	<div class="alert alert-success" role="alert">
             {!! \Session::get('success') !!}
        </div>
@endif

 

That’s all. Now you got an idea right. Hope this helps

 

 

Post Your Questions on our forum

Post a question on Forum

Ajith Jojo Joseph

Self taught, dedicated young entrepreneur with many licensed products under his sleeve. Passionate about technology, business and excellence in general.

Share with your friends:

Comments are closed.

How to create Laravel Flash Messages

Laravel flash messages are a convenient way to display one-time notifications to the user after a form submission or other […]

December 22, 2022

How to make Custom Artisan Command in Laravel

Custom Artisan commands are a useful feature of Laravel that allow you to define your own command-line commands for tasks […]

December 22, 2022

Tips for Laravel migrations

Laravel migrations are a powerful tool for managing and modifying your database schema in a structured and organized way. Here […]

December 22, 2022

Tricks and tips for Laravel blade templating

Welcome to our blog about tricks and tips for Laravel blade templating! Blade is the default templating engine for Laravel, […]

December 22, 2022

Digital Marketing Toolkit

Get Free Access to Digital Marketing Toolkit. You can use all our tools without any limits

Get Free Access Now