Display message with session flash using bootstrap alert class in laravel
Display message with session flash using bootstrap alert class in laravel
In this session, we’ll try our hand at solving the "Display message with session flash using bootstrap alert class in laravel" puzzle by using the computer language.
You can display alert messages in view files using the session flash in laravel 8. This code snippet helps you to add a bootstrap dynamic alert class (alert-success, alert-danger, alert-info) to show different types of messages for failures and success using session flash.-
Display alert message with session flash in laravel 8
//Import session facade in class use Illuminate\Support\Facades\Session; //Controller's method response after performing the task //Inside controller's method if(!$condition){ Session::flash('message', 'Error message !'); Session::flash('alert-class', 'alert-danger'); return redirect()->back(); } Session::flash('message', 'Success message !'); Session::flash('alert-class', 'alert-success'); return redirect()->back(); //Display message with dynamic alert class in view file @if(Session::has('message')) <div class="alert {{ Session::get('alert-class', 'alert-info') }} alert-dismissible fade show"> {{ Session::get('message') }} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif
This code snippet helps you to show messages with bootstrap alert in the view file which is returned by the controller using session flash in Laravel 8.
Related Queries
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- Pass variable from blade to controller Laravel
- PhpMyAdmin - Error The mysqli extension is missing
- Link storage folder in laravel 8
- How to add script on specific view file in laravel while extending layout
- How to include header file in laravel
- Call to a member function update() on null
- How to randomly get the user id from users table in laravel
- Method Illuminate\Events\Dispatcher::fire does not exist
- Wheredate in laravel not working
- Use withCount() to get total number of records with relationship
- Datetime field in Laravel migration
- Insert current date time in a column using Laravel
- How to Get records between two dates in Laravel
- Rendering HTML from database table to view in Laravel
- How to pass external link in laravel blade to anchor tag
- How to check if user has created any post or not in laravel
- How to display 1 day ago in comments in laravel view
- SQLSTATE[42S21]: Column already exists: 1060 Duplicate column name 'user_id'
- How to display order by null last in laravel
- InRandomOrder() method with example in laravel
- How to create laravel project using jetstream
- Send id with route Laravel
- Pagination in laravel
- Create records using relationship in laravel
- Remove array keys and values if it does not exist in other array in Laravel