@extends(getTemplate() . '.panel.layouts.panel_layout') @section('content') @if (auth()->user()) @if (auth()->user()->isOrganization()) @include(getTemplate() . '.panel.dashboard.organisation.index') @elseif (auth()->user()->isUser()) @include(getTemplate() . '.panel.dashboard.user.index') @elseif (auth()->user()->isTeacher()) @include(getTemplate() . '.panel.dashboard.teacher.index') @endif @endif @endsection