@extends('layouts.app')
@section('title', 'Liked Videos | TAKEONE')
@section('extra_styles')
@endsection
@section('content')
@if($videos->isEmpty())
@else
@foreach($videos as $video)
@endforeach
{{ $videos->onEachSide(1)->links() }}
@endif
@endsection