Examples of code I've written in PHP, Javascript, SCSS, etc.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

panel.blade.php 378 B

12345678910111213141516171819202122232425
  1. @extends('master')
  2. @section('title', 'Panel')
  3. @section('child-type', 'panel')
  4. @section('head-metas')
  5. @parent
  6. @endsection
  7. @section('content')
  8. @parent
  9. <main class="panel">
  10. <div id="panel">
  11. </div>
  12. </main>
  13. @endsection
  14. @section('footer')
  15. @endsection
  16. @section('scripts')
  17. @parent
  18. <script src="js/app.js"></script>
  19. <script src="js/chunk-vendors.js"></script>
  20. @endsection