component.blade.php 417 B

12345678910111213141516171819202122232425262728
  1. @extends('panel.layouts.app')
  2. @section('title')
  3. {{ $title }}
  4. @endsection
  5. @section('style')
  6. {{ $style }}
  7. @endsection
  8. @section('content')
  9. <div class="app-title">
  10. <div>
  11. {{ $subject }}
  12. </div>
  13. <ul class="app-breadcrumb breadcrumb">
  14. {{ $breadcrumb }}
  15. </ul>
  16. </div>
  17. {{ $content }}
  18. @endsection
  19. @section('script')
  20. {{ $script }}
  21. @endsection