mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-27 18:04:35 +00:00
42 lines
850 B
PHP
42 lines
850 B
PHP
@include('layout.head')
|
|
|
|
<body>
|
|
|
|
|
|
@include('layout.header')
|
|
|
|
<div class="section mb-5 watch" id="pages">
|
|
<div class="container-fluid pb-5">
|
|
@livewire('video', [
|
|
'id' => $id,
|
|
'name' => $name,
|
|
'thumb' => $thumb,
|
|
'title' => $title,
|
|
'duration' => $duration,
|
|
'stamp' => $stamp,
|
|
'ago' => $ago,
|
|
'views' => $views,
|
|
'downloads' => $downloads,
|
|
'commentsCount' => $commentsCount,
|
|
'comments' => $comments,
|
|
'otherVideos' => $otherVideos,
|
|
'likes' => $likes,
|
|
'dislikes' => $dislikes,
|
|
'liked' => $liked,
|
|
'disliked' => $disliked
|
|
])
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
@include('layout.footer')
|
|
|
|
@include('layout.dependency')
|
|
|
|
@include('layout.script')
|
|
|
|
</body>
|
|
|
|
</html>
|