@extends('layouts.master') @section('content') @if (auth()->user()->user_type=='super-admin') @include('layouts.super-admin-dashboard') @endif @if (auth()->user()->user_type=='teacher') @include('layouts.teacher-dashboard') @endif @if (auth()->user()->user_type=='student') @include('layouts.student-dashboard') @endif @stop