This theme ships some components (as twig macros) that hide the complexity of rendering the same elements over and over again with the correct HTML.
Progress Bar has been implemented to simplify the use of the Tabler Progress Bar component.
progress_bar() macro, waits for 2 parameters:
| Parameter | Description | Type | Default |
|---|---|---|---|
| item | Item object | object |
{} |
| options | Options object | object |
{} |
| Parameter | Description | Type | Default |
|---|---|---|---|
| value | Value of the item | integer |
0 |
| max | Max value of the item | integer |
0 |
| min | Min value of the item | integer |
0 |
| indeterminate | Progress bar will be animated as 'loading' animation | boolean |
false |
| autoLabel | Define the progress label automatically | boolean |
false |
| label | Label on the progress bar | string |
empty string / if autoLabel -> {{percent}}% |
| multiple | Define if the progress will be with other progress | boolean |
false |
| style | Style to add to the progress | string |
empty string |
| striped | Add stripped Boostrap background on the progress bar color | boolean |
false |
| animated | Animate the stripped background | boolean |
false |
| labelVisible | Define if the label should be visible | boolean |
false |
| color | Color of the progress bar (red, blue, ...) | string |
empty string |
| style | Style to add to the progress bar | string |
empty string |
| extraClass | Add custom classes to the progress bar | string | empty string |
| attr | Additional raw HTML attributes (data-*, aria-*, etc.) |
object | {} |
| Parameter | Description | Type | Default |
|---|---|---|---|
| height | Height of progress (1.5rem, 20px, ...) | string |
empty string |
| style | Style to add to the progress container | string |
empty string |
| extraClass | Add custom classes to the progress container | string | empty string |
| attr | Additional raw HTML attributes (data-*, aria-*, etc.) |
object | {} |
{% from '[@Tabler](https://github.com/Tabler)/components/progress_bar.html.twig' import progress_bar %}
{{ progress_bar() }}
{{ progress_bar({value : 10}) }}
{{ progress_bar({value : 66, max : 100}) }}
{{ progress_bar({value : 40, max : 50, min : -50}) }}
{{ progress_bar({value : 66, max : 100, color : 'success'}, {extraClass : 'bg-danger'}) }}
{{ progress_bar({value : 66, max : 100, color : 'orange'}, {height: '4px'}) }}
{{ progress_bar({value : 66, max : 100, autoLabel : true}) }}
{{ progress_bar({value : 66, max : 100, label : 'Partially done'}, {height: '20px'}) }}
{{ progress_bar({value : 66, max : 100, label : 'Error while processing', color : 'danger'}, {height: '20px'}) }}
{{ progress_bar({color : 'green'}, {extraClass : 'bg-green-lt'}) }}
{{ progress_bar({value :2, max: 5, color : 'red', striped : true}) }}
{{ progress_bar({value :4, max: 5, striped : true, animated: true}) }}
Progress Bars has been implemented to simplify the use of the Progress Bar, with multiple progress bars in it.
progress_bars() macro, waits for 2 parameters:
| Parameter | Description | Type | Default |
|---|---|---|---|
| items | Array of Item object | array |
[] |
| options | Options object | object |
{} |
| Parameter | Description | Type | Default |
|---|---|---|---|
| height | Height of all progress (1.5rem, 20px, ...) | string |
empty string |
| separated | Define if the sub progress bars have a blank between them | string |
empty string |
| style | Style to add to the progress bars container | string |
empty string |
| extraClass | Add custom classes | string | empty string |
| attr | Additional raw HTML attributes (data-*, aria-*, etc.) |
object | {} |
{% from '[@Tabler](https://github.com/Tabler)/components/progress_bar.html.twig' import progress_bars %}
{{ progress_bars([
{value :15, max: 100},
{value :30, max: 100, color: 'success'},
{value :20, max: 100, color: 'danger'},
]) }}
{{ progress_bars([
{value :15, max: 100},
{value :30, max: 100, color: 'success'},
{value :20, max: 100, color: 'danger'},
], {separated : true}) }}
{{ progress_bars([
{value :15, max: 100},
{value :30, max: 100, color: 'success'},
{value :20, max: 100, color: 'danger'},
], {height: '20px'}) }}
progress_background() macro, waits for 1 parameter:
| Parameter | Description | Type | Default |
|---|---|---|---|
| options | Options object | object |
{} |
| Parameter | Description | Type | Default |
|---|---|---|---|
| color | Color of the progress (red, blue, ...) | string |
primary-lt |
| width | Width in percent of the progress (10, 15, 55) | number |
0 |
| text | Text of the progress | string |
empty string |
| value | Value text displayed | string |
empty string |
| attr | Additional raw HTML attributes (data-*, aria-*, etc.) |
object | {} |
{% from '[@Tabler](https://github.com/Tabler)/components/progress_bar.html.twig' import progress_background %}
{{ progress_background({width : 65, text: 'Poland'}) }}
{{ progress_background({width : 35, text: 'Germany'}) }}
{{ progress_background({width : 28, text: 'United Stated'}) }}
{{ progress_background({width : 20, text: 'United Kingdom'}) }}
{{ progress_background({width : 15, text: 'France'}) }}
Please go back to the Tabler bundle documentation to find out more about using the theme.
How can I help you explore Laravel packages today?