@extends('layouts.admin') @section('css') @endsection @section('admin')

Edit Voice Room

Room Information
@csrf @method('PUT')
Room ID cannot be changed
@error('room_name')
{{ $message }}
@enderror
@error('room_type')
{{ $message }}
@enderror
@error('room_status')
{{ $message }}
@enderror
@error('room_coin')
{{ $message }}
@enderror
@error('room_description')
{{ $message }}
@enderror
@error('announcement')
{{ $message }}
@enderror
Room Statistics
{{ $room->join_room_users()->count() }}
Total Joined
{{ $room->online_users()->count() }}
Currently Online
{{ number_format($room->room_total_hour ?? 0, 1) }}
Total Hours
{{ $room->levels ? $room->levels->level : 'N/A' }}
Room Level
Cancel
@endsection