@extends('layouts.app') @section('content')
@if(Auth::user()->role === 'admin')
นี่คือเนื้อหาสำหรับผู้ดูแลระบบ
@elseif(Auth::user()->role === 'teacher')
นี่คือเนื้อหาสำหรับครู
@else
นี่คือเนื้อหาสำหรับนักเรียน
@endif
@endsection