@extends('layouts.app') @section('title','Dashboard') @section('content')

Welcome, {{ Auth::user()->name }}

You are logged in as {{ Auth::user()->role }}.

@if (Auth::user()->role === 'admin') Go to Admin Dashboard @elseif (Auth::user()->role === 'meteorologist') Go to Meteorologist Dashboard @elseif (Auth::user()->role === 'observer') Go to Your Dashboard @elseif(Auth::user()->role === 'multistationuser') Go to Your Dashboard @else

Unauthorized role.

@endif
@endsection