You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
570 B
20 lines
570 B
<div {!! $attributes !!}> |
|
@if ($title || $tools) |
|
<div class="card-header {{ $divider ? 'with-border' : '' }}"> |
|
<span class="card-box-title">{!! $title !!}</span> |
|
<div class="box-tools pull-right"> |
|
@foreach($tools as $tool) |
|
{!! $tool !!} |
|
@endforeach |
|
</div> |
|
</div> |
|
@endif |
|
<div class="card-body" style="{!! $padding !!}"> |
|
{!! $content !!} |
|
</div> |
|
@if($footer) |
|
<div class="card-footer"> |
|
{!! $footer !!} |
|
</div> |
|
@endif |
|
</div> |