PHP code example of hugojf / eflash

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

    

hugojf / eflash example snippets


$username = e(auth()->user()->username);

flash()->success("Welcome, $username!");

eflash()->success('Welcome, %s!', auth()->user()->username);

eflash()->success($format, ...$args);

eflash()->error($format, ...$args);

eflash()->info($format, ...$args);

eflash()->message($format, $level, ...$args);

eflash()->warning($format, ...$args);

eflash()->success('Welcome %s!', $username);

eflash()->error('Input <strong>%s</strong> is not valid!', $input);

eflash()->info('Server %s was turned off!', $serverName)->important();

eflash()->message('A boring %s', $message)->overlay();

eflash()->warning('Joined team <i>%s</i>!', $teamName)->overlay();