You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aNetwork-leaf/app/views/pages/dashboard.blade.php

18 lines
410 B
PHTML

@extends('layouts.app-layout', [
'title' => 'Dashboard',
'breadcrumbs' => [
[
'title' => 'Dashboard',
'href' => '/dashboard',
]
]
])
@section('content')
<div class="py-4 px-4">
<div class="overflow-hidden shadow-sm sm:rounded-lg bg-black">
<div class="p-6 text-gray-100">You're logged in!</div>
</div>
</div>
@endsection