@extends('layouts.master') @section('title') @lang('translation.dashboard') @endsection @section('content') @include('partials.session')

Welcome, {{ Auth::user()->first_name }}!

@if(!$error && $page_type != 'view_page')     @if($channel->id == Auth::id()) @endif @endif {!! $send_join_request !!}
@if(!$error)
@endif
@if($error) @if($error == "no_view_permission") Video is Private, Send View Request @else {{ $error }} @endif @endif
@if(!$error)
@foreach($comments_normal as $comment)

{{ \Carbon\Carbon::parse($comment->comment_time)->format('H:i') }} {{ $comment->username }}: {{ $comment->comment_text }}

@endforeach
@csrf
@endif
@endsection @section('script') @endsection