box.blade.php 386 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>
  9. </div>
  10. <div class="box-body collapse show" style="{!! $padding !!}">
  11. {!! $content !!}
  12. </div>
  13. </div>