12345678910111213141516171819 |
- <div {!! $attributes !!}>
- @foreach($items as $key => $item)
- <div class="panel box box-primary" style="margin-bottom: 0px">
- <div class="box-header with-border">
- <h4 class="box-title">
- <a data-toggle="collapse" data-parent="#{{$id}}" href="#collapse{{ $key }}">
- {{ $item['title'] }}
- </a>
- </h4>
- </div>
- <div id="collapse{{ $key }}" class="panel-collapse collapse {{ $key == 0 ? 'in' : '' }}">
- <div class="box-body">
- {!! $item['content'] !!}
- </div>
- </div>
- </div>
- @endforeach
- </div>
|