11 lines
273 B
PHP
11 lines
273 B
PHP
@extends('admin::layouts.app')
|
|
|
|
@section('title', 'Dashboard')
|
|
|
|
@section('content')
|
|
<h1 class="text-xl font-semibold text-gray-900 mb-4">Dashboard</h1>
|
|
|
|
<div class="bg-white rounded shadow p-6">
|
|
<p class="text-gray-700">Hello, {{ $user->name }}!</p>
|
|
</div>
|
|
@endsection
|