home-erp

git clone git://archive.git.mtrnord.blog/MTRNord/home-erp.git
Log | Files | Refs | README

dashboard.blade.php (570B)


      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                     <livewire:dashboard.overview />
     13                 </div>
     14             </div>
     15         </div>
     16     </div>
     17 </x-app-layout>