This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/resources/theme/backend/sbadmin/widgets/buttongroup.blade.php
2017-08-03 16:35:36 +10:00

7 lines
473 B
PHP

<div class="btn-group {{{ isset($large) ? 'btn-group-lg' : ''}}} {{{ isset($small) ? 'btn-group-sm' : ''}}} {{{ isset($extrasmall) ? 'btn-group-xs' : ''}}}" role="group" aria-label="...">
<button type="button" class="btn btn-default">{{$value1}}</button>
<button type="button" class="btn btn-default">{{$value2}}</button>
<button type="button" class="btn btn-default">{{$value3}}</button>
<button type="button" class="btn btn-default">{{$value4}}</button>
</div>