@include('layouts.partials.assets') @php $user = auth('panel')->user(); $links = [ ['label' => 'داشبورد', 'route' => 'panel.dashboard'], ['label' => 'کدهای فنی من', 'route' => 'panel.codes.index'], ['label' => 'فایل‌های من', 'route' => 'panel.files.index'], ['label' => 'خروجی‌های اکسل', 'route' => 'panel.exports.index'], ['label' => 'گفتگوهای هوش مصنوعی', 'route' => 'panel.ai-conversations.index'], ['label' => 'پروفایل من', 'route' => 'panel.profile.edit'], ]; @endphp

پنل کاربری

مدیریت ربات‌های چراغ برق

@if($user) ربات: {{ $user->bot_enabled ? 'روشن' : 'خاموش' }} {{ $user->display_name ?: $user->mobile }}
@csrf خروج
@endif

نمای کلی

@yield('title', 'داشبورد')

@if($user)

{{ $user->mobile }}

@endif
@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif @yield('content')