PHP code example of apphp / laravel-flash

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');

use Apphp\Flash\Flash;

flash('First Message', 'success');
flash('Second Message', 'warning', true);

return redirect('somewhere');

// 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');
bash
php artisan vendor:publish --provider="Apphp\Flash\FlashServiceProvider"
bash
php artisan vendor:publish --tag=laravel-flash:config
bash
./vendor/bin/phpunit vendor\\apphp\\laravel-flash\\tests\\TestFlashMessage.php
bash
composer tests vendor\\apphp\\laravel-flash\\tests\\TestFlashMessage.php