23 lines
700 B
PHP
Executable File
23 lines
700 B
PHP
Executable File
<div {!! $attributes !!}>
|
|
<div class="dropdown btn-group {!! $options['show_tool_shadow'] ? '' : 'no-shadow' !!} pull-right">
|
|
@foreach($options['tools'] as $tool)
|
|
{!! $tool !!}
|
|
@endforeach
|
|
</div>
|
|
|
|
<h4 class="header-title m-t-0 m-b-25">{!! $options['title'] !!}</h4>
|
|
|
|
<div>
|
|
<div>
|
|
<div class="text-muted pull-right">{!! $options['description'] !!} </div>
|
|
|
|
<h2 class="main-content m-b-10" >
|
|
{!! $options['content']['left'] !!}
|
|
</h2>
|
|
</div>
|
|
|
|
@if($options['chart'])
|
|
<div style="margin:-4px -22px -20px">{!! $options['chart'] !!}</div>
|
|
@endif
|
|
</div>
|
|
</div> |