@extends('index') @section('content') @if(isset($profile)) @include('profile.nav') @endif
@if(isset($profile)) @else @endif

{{ __('web.NOW_PLAYING_SONG') }}

{{ __('web.NOW_PLAYING_SONGS_IN_QUEUE') }}

{{ __('web.RADIO_OFF') }}
@if (! auth()->check() && isset($profile) || (auth()->check() && isset($profile) && auth()->user()->username != $profile->username))
{{ __('web.NOW_PLAYING_NO_SONGS_IN_QUEUE', ['user' => $profile->name]) }}
@else
{{ __('web.NOW_PLAYING_NO_SONGS_IN_QUEUE_OWNER') }}
@endif
@if(isset($profile)) @include('commons.song', ['songs' => $profile->suggest, 'element' => 'carousel']) @else @include('commons.song', ['songs' => $suggest, 'element' => 'carousel']) @endif
@endsection