panel.blade.php 862 B

1234567891011121314151617181920212223242526272829303132333435
  1. @props(['type' => null, 'icon' => null, 'title', 'subtitle' => null, 'actions' => null, 'alert' => null, 'footer' => null])
  2. <div class="panel {{ $type ? "panel-$type" : '' }}">
  3. <div class="panel-heading">
  4. <h2 class="panel-title">
  5. @if ($icon)
  6. <i class="icon {{ $icon }}" aria-hidden="true"></i>
  7. @endif
  8. {{ $title }}
  9. @if ($subtitle)
  10. <small>{{ $subtitle }}</small>
  11. @endif
  12. </h2>
  13. @if ($actions)
  14. <div class="panel-actions">
  15. {{ $actions }}
  16. </div>
  17. @endif
  18. </div>
  19. @if ($alert)
  20. {!! $alert !!}
  21. @endif
  22. <div class="panel-body mt-lg-15">
  23. {{ $slot }}
  24. </div>
  25. @if ($footer)
  26. <div class="panel-footer">
  27. {{ $footer }}
  28. </div>
  29. @endif
  30. </div>