Warning boxes

Alert

Basic Usage

<?php

use Dcat\Admin\Widgets\Alert;

$alert = Alert::make('content', 'TITLE');

// types
$alert->success();
$alert->danger();
$alert->info();
$alert->warning();

// icon
$alert->icon('feather icon-x');

// Removable buttons
$alert->removable();

result

Callout

<?php

use Dcat\Admin\Widgets\Callout;

$callout = Callout::make('content', 'TITLE');

// color
$callout->light();
$callout->primary();

// Removable buttons
$callout->removable();

result