@extends('layouts.app')
@section('title', $user->name . "'s Channel | TAKEONE")
@section('extra_styles')
@endsection
@section('content')
@auth
@if(Auth::user()->id === $user->id && $playlists && $playlists->count() > 0)
@endif
@endauth
@if($videos->isEmpty())
No videos yet
This channel hasn't uploaded any videos.
@auth
@if(Auth::user()->id === $user->id)
Upload First Video
@endif
@endauth
@else
@foreach($videos as $video)
@endforeach
{{ $videos->links() }}
@endif
@include('layouts.partials.share-modal')
@endsection
@section('scripts')
@endsection