@extends('layouts.app') @section('title', 'Watch History | TAKEONE') @section('extra_styles') @endsection @section('content')

Watch History

@if($videos->isEmpty())

No watch history

Videos you watch will appear here.

Browse Videos
@else
@foreach($videos as $video)
@if($video->thumbnail) {{ $video->title }} @else {{ $video->title }} @endif @if($video->duration) {{ gmdate('i:s', $video->duration) }} @endif
@if($video->user && $video->user->avatar_url) {{ $video->user->name }} @endif

{{ $video->title }}

{{ $video->user->name ?? 'Unknown' }} • {{ number_format($video->size / 1024 / 1024, 0) }} MB
@endforeach
@endif @endsection