My SMM panel
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

22 строки
358 B

  1. @extends('master')
  2. @section('title', 'Panel')
  3. @section('head-metas')
  4. @parent
  5. <link rel="stylesheet" href="{{asset('main.css')}}">
  6. @endsection
  7. @section('content')
  8. @parent
  9. <div id="counter">
  10. Counter: @{{ counter }}
  11. </div>
  12. @endsection
  13. @section('scripts')
  14. @parent
  15. <script src="vue.global.js"></script>
  16. <script src="main.js"></script>
  17. @endsection