27 lines
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
{{-- LEGACY VIEW (NOT USED)
|
|
This file is the default Breeze dashboard and is NOT wired to any routes.
|
|
The active dashboard layout lives in resources/views/dashboard/app.blade.php
|
|
and pages in resources/views/dashboard/*.blade.php
|
|
--}}
|
|
<x-app-layout>
|
|
<x-slot name="header">
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
{{ __('Dashboard') }}
|
|
</h2>
|
|
</x-slot>
|
|
|
|
<div class="py-12">
|
|
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
|
<div class="mb-6 rounded-lg border border-amber-300 bg-amber-50 p-4 text-sm text-amber-900">
|
|
<strong>Legacy template:</strong> This view is not used by the current dashboard routes.
|
|
The live dashboard uses <code>resources/views/dashboard/app.blade.php</code>.
|
|
</div>
|
|
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
|
|
<div class="p-6 text-gray-900">
|
|
{{ __("You're logged in!") }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-app-layout>
|