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

Watch History @if($videos->isNotEmpty()) {{ $videos->count() }} {{ Str::plural('video', $videos->count()) }} @endif

@if($videos->isNotEmpty())
@csrf @method('DELETE')
@endif
@if($videos->isEmpty())

No watch history

Videos you watch will appear here.

Browse Videos
@else
@foreach($videos as $video) @include('components.video-card', ['video' => $video]) @endforeach
@endif @endsection