@extends('layouts.app') @section('title', $video->title . ' | TAKEONE') @section('extra_styles') @endsection @section('content')

{{ $video->title }}

{{ number_format($video->size / 1024 / 1024, 0) }} MB {{ $video->created_at->format('M d, Y') }} @if($video->width && $video->height) {{ $video->width }}x{{ $video->height }} @endif
@auth
@csrf
@if(Auth::id() === $video->user_id) @endif @else Like @endauth @if($video->isShareable()) @endif
@if($video->description)

{{ $video->description }}

@endif

Up Next

More videos coming soon...
@include('layouts.partials.share-modal') @include('layouts.partials.edit-video-modal') @if(Session::has('openEditModal') && Session::get('openEditModal')) @auth @endauth @endif @endsection