8 lines
205 B
PHP
8 lines
205 B
PHP
@extends('layouts.user.dashb4')
|
|
@section('content')
|
|
<br>
|
|
@if(auth()->user()->hasRole('User') || auth()->user()->hasRole('Admin'))
|
|
Welcome to the dashboard where you are now logged into.
|
|
@endif
|
|
|
|
@endsection |