@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
@else Like @endauth @if($video->isShareable()) @endif
@if($video->description)

{{ $video->description }}

@endif

Up Next

More videos coming soon...
@include('layouts.partials.share-modal') @endsection