MercurySeries\Flashy\FlashyNotifier::message PHP Method

message() public method

Flash a general message.
public message ( string $message, string $link = '#', string $type = 'success' )
$message string
$link string
$type string
    public function message($message, $link = '#', $type = 'success')
    {
        $this->session->flashy('flashy_notification.message', $message);
        $this->session->flashy('flashy_notification.link', $link);
        $this->session->flashy('flashy_notification.type', $type);
        return $this;
    }