24 lines
602 B
PHP
24 lines
602 B
PHP
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ $title }}</h3>
|
|
<div class="box-tools pull-right">
|
|
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
|
|
</div>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<div class="box-body">
|
|
{{ $content }}
|
|
</div>
|
|
<!-- /.box-body -->
|
|
|
|
@if (isset($footer))
|
|
<div class="box-footer clearfix">
|
|
{{ $footer }}
|
|
</div>
|
|
@endif
|
|
<!-- /.box-footer -->
|
|
</div>
|
|
<!-- /.box -->
|