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

Welkom, {{ auth()->user()->name }}

{{--
Rol: @switch(auth()->user()->role) @case(0) Gast @break @case(1) Speler @break @case(2) Admin @break @case(3) Super Admin @break @endswitch
--}}
@if(auth()->user()->role >= 3) @endif

Gebruik de bovenstaande knoppen of het menu om aan de slag te gaan.

@endsection