Progress - viames/pair GitHub Wiki
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.