1. Go to this page and download the library: Download apphp/laravel-flash library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
apphp / laravel-flash example snippets
public function store()
{
flash('Welcome Message!');
return redirect()->route('home');
}
flash()->danger('The error message')->important();
flash()->info('The info message');
flash()->success(['Success', 'Operation has been successfully completed']);
flash(['Error', 'The error message'], 'error', true);
flash('The info message', true);
flash('The info message');
// All previously defined messages will be removed
flash('First Message', 'error');
flash('Second Message', 'danger')->clear();
// All previously defined messages will be removed
flash('First Message', 'error');
flash('Second Message', 'danger');
Flash::success('Third Message');
flash()->clear();
Flash::success('First Message');
// Only current message will be removed
Flash::error('Second Message')->clear();
return redirect('somewhere');