2022-09-21 11:59:53 +08:00

13 lines
433 B
PHP

<div {!! $attributes !!}>
<div class="box-header with-border">
<h3 class="box-title">{{ $title }}</h3>
<div class="box-tools pull-right">
@foreach($tools as $tool)
{!! $tool !!}
@endforeach
</div><!-- /.box-tools -->
</div><!-- /.box-header -->
<div class="box-body" style="display: block;">
{!! $content !!}
</div><!-- /.box-body -->
</div>