annotate resources/views/dashboard.blade.php @ 2:90296614b7e2
default tip
Adding in the base for the clients table
| author |
luka |
| date |
Thu, 28 Aug 2025 20:55:40 -0400 |
| parents |
9d7dcd54c677 |
| children |
|
| rev |
line source |
|
0
|
1 <x-app-layout>
|
|
|
2 <x-slot name="header">
|
|
|
3 <h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
|
|
|
4 {{ __('Dashboard') }}
|
|
|
5 </h2>
|
|
|
6 </x-slot>
|
|
|
7
|
|
|
8 <div class="py-12">
|
|
|
9 <div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
|
|
10 <div class="bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg">
|
|
|
11 <div class="p-6 text-gray-900 dark:text-gray-100">
|
|
|
12 {{ __("You're logged in!") }}
|
|
|
13 </div>
|
|
|
14 </div>
|
|
|
15 </div>
|
|
|
16 </div>
|
|
|
17 </x-app-layout>
|