PHXBot
YouTube Chat Bot
Dashboard
@if(auth()->check() && auth()->user()->isAdmin())
Admin
@endif @if(auth()->check())
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
{{ auth()->user()->name }}
@csrf
Logout
@endif
Dashboard
@if(auth()->check() && auth()->user()->isAdmin())
Admin
@endif
@if(auth()->check())
{{ auth()->user()->name }}
@csrf
Logout
@endif
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@yield('content')