@extends('layouts.Master') @section('page') @if(Session::get('user_type')=='admin') @include('backend.dashboard.admin') @endif @if(Session::get('user_type')=='hr') @include('backend.dashboard.hr') @endif @if(Session::get('user_type')=='student') @include('backend.dashboard.student') @endif @if(Session::get('user_type')=='teacher') @include('backend.dashboard.teacher') @endif @if(Session::get('user_type')=='super_admin') @include('backend.dashboard.super_admin') @endif @endsection