player.blade.php 944 B

123456789101112131415161718192021222324252627282930313233
  1. @extends('layouts.blank')
  2. @section('content')
  3. <div class="force-dark-mode">
  4. <live-player id="{{ $id }}"></live-player>
  5. </div>
  6. @endsection
  7. @push('scripts')
  8. <script type="text/javascript" src="/js/live-player.js?v={{ time() }}"></script>
  9. <script type="text/javascript">App.boot();</script>
  10. @endpush
  11. @push('meta')
  12. <script type="text/javascript">
  13. window._pushr = {
  14. host: "{{ config('broadcasting.connections.pusher.options.host')}}",
  15. port: "{{ config('broadcasting.connections.pusher.options.port')}}",
  16. key: "{{ config('broadcasting.connections.pusher.key')}}",
  17. cluster: "{{ config('broadcasting.connections.pusher.options.cluster')}}"
  18. };
  19. </script>
  20. @endpush
  21. @push('styles')
  22. <link rel="stylesheet" type="text/css" href="{{ mix('css/spa.css') }}">
  23. <style type="text/css">
  24. body {
  25. background-color: #000000;
  26. background-image: radial-gradient(circle, #0f172a 0%, #000000 74%);
  27. }
  28. </style>
  29. @endpush