Laracasts\Flash\FlashNotifier::important PHP Method

important() public method

Add an "important" flash to the session.
public important ( )
    public function important()
    {
        $this->session->flash('flash_notification.important', true);
        return $this;
    }

Usage Example

 /**
  * Add an "important" flash to the session.
  *
  * @return $this 
  * @static 
  */
 public static function important()
 {
     return \Laracasts\Flash\FlashNotifier::important();
 }