PHP code example of kagga / flash

1. Go to this page and download the library: Download kagga/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/ */

    

kagga / flash example snippets


'providers' => [
    Kagga\Flash\FlashServiceProvider::class
];

'aliases' => [
    'Flash' => Kagga\Flash\Facade\Flash::class
];

public function update()
{
    Flash::success('Update','Successfully Updated');

    return Redirect::home();
}

public function store()
{

    flash()->success('Title','Message');

    return Redirect::home();
}
bash
php artisan vendor:publish