box.blade.php 433 B

12345678910111213
  1. <div {!! $attributes !!}>
  2. <div class="box-header with-border">
  3. <h3 class="box-title">{{ $title }}</h3>
  4. <div class="box-tools pull-right">
  5. @foreach($tools as $tool)
  6. {!! $tool !!}
  7. @endforeach
  8. </div><!-- /.box-tools -->
  9. </div><!-- /.box-header -->
  10. <div class="box-body" style="display: block;">
  11. {!! $content !!}
  12. </div><!-- /.box-body -->
  13. </div>