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/views/sbadmindemo/widgets/buttongroup.blade.php
2016-10-14 17:59:25 +11: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>