-
Notifications
You must be signed in to change notification settings - Fork 2
Progress
Viames Marino edited this page Feb 26, 2026
·
2 revisions
Pair\Html\FormControls\Progress renders an HTML <progress> element.
max(int|float $maxValue): selfrender(): string- Inherited methods:
value()andcaption()from FormControl
$upload = (new \Pair\Html\FormControls\Progress('uploadProgress'))
->value(45)
->max(100)
->caption('45%');
echo $upload->render();Streaming status bar:
$sync = (new \Pair\Html\FormControls\Progress('sync'))
->value(12)
->max(24)
->caption('12/24 chunks');See also: Meter, Number, FormControl.