Formuláře
Alert
Alert/callout box pro zobrazování zpráv.
Na této stránce
Alert/callout box pro zobrazování zpráv.
use NyonCode\WireForms\Components\Display\Alert;
Použití
Alert::make('warning') ->title('Warning') ->message('This action cannot be undone.') ->warning() ->icon('exclamation') ->dismissible()
Helpery barev
Alert::make('x')->info() // modráAlert::make('x')->success() // zelenáAlert::make('x')->warning() // žlutáAlert::make('x')->danger() // červenáAlert::make('x')->color('primary') // explicitní barva
Metody
| Metoda | Popis |
|---|---|
title(string) |
Titulek alertu |
message(string) / content(string) |
Tělo alertu |
icon(string) |
Název ikony |
color(string) |
Barva alertu |
info() / success() / warning() / danger() |
Zkratky barev |
dismissible() |
Povolit zavření |