👋 สวัสดี {{ Auth::user()->name }}
คุณเข้าสู่ระบบในบทบาท: {{ Auth::user()->role }}
@if(Auth::user()->role === 'admin')
นี่คือเนื้อหาสำหรับผู้ดูแลระบบ
@elseif(Auth::user()->role === 'teacher')
นี่คือเนื้อหาสำหรับครู
@else
นี่คือเนื้อหาสำหรับนักเรียน
@endif
@endsection