@push('title', $room->name)
{{ $room->name }}
{{ $room->users }}
{{ $room->name }}
{{ $room->owner->username }}

{{ $room->owner?->username ?? 'Unknown' }}

{{ __('Description:') }} {{ $room->description }}

{{ __('Room details') }}

{{ __('Max users:') }} {{ $room->users_max }}

@if (strlen($room->tags) > 0)

Tags: @foreach (explode(";", $room->tags) as $tag) @if (empty($tag) === false) {{ $tag }} @endif @endforeach

@endif
@if ($room->guild !== null) {{ __('The room guild') }} {{ $room->guild->name }}

{{ $room->guild->description }}

@endif