Encore\Admin\Widgets\Alert::__construct PHP Method

__construct() public method

public __construct ( $content, $title = '', $style = 'danger' )
    public function __construct($content, $title = '', $style = 'danger')
    {
        $this->content = (string) $content;
        $this->title = $title ?: trans('admin::lang.alert');
        $this->style = $style;
    }