@extends('layouts.app')
@section('title', 'Watch History | TAKEONE')
@section('extra_styles')
@endsection
@section('content')
@if($videos->isEmpty())
No watch history
Videos you watch will appear here.
Browse Videos
@else
@foreach($videos as $video)
@endforeach
@endif
@endsection