-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18c1de6
commit 8f3ab12
Showing
7 changed files
with
71 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<a {{ $attributes->merge(['class' => 'px-3.5 w-full h-9 mt-4 items-center justify-center rounded-full inline-flex items-center px-4 py-2 bg-gray-200 border border-transparent rounded-md font-medium text-xs text-gray-800 uppercase tracking-widest hover:bg-gray-200/80 active:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-gray-200 focus-visible:ring-offset-2 focus:ring-offset-2 dark:focus:ring-offset-gray-800 transition ease-in-out duration-150']) }}> | ||
{{ $slot }} | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,43 @@ | ||
<x-app-layout> | ||
<x-slot name="header"> | ||
<h2 class="text-xl font-semibold leading-tight text-gray-800 dark:text-gray-200"> | ||
{{ __('Dashboard') }} | ||
{{ __('Overview') }} | ||
</h2> | ||
</x-slot> | ||
|
||
<div class="py-12"> | ||
<div class="mx-auto max-w-7xl sm:px-6 lg:px-8"> | ||
<div class="overflow-hidden bg-white shadow-sm dark:bg-gray-800 sm:rounded-lg"> | ||
<div class="p-6 text-gray-900 dark:text-gray-100"> | ||
{{ __("Hai," . " " . Auth::user()->name . "! " . "Do anything here, because you're the super admin!")}} | ||
</div> | ||
<div class="pt-6 mx-auto max-w-7xl sm:px-6 lg:px-8"> | ||
<div class="overflow-hidden bg-white shadow-sm dark:bg-gray-800 sm:rounded-lg"> | ||
<div class="p-6 text-gray-900 dark:text-gray-100"> | ||
{{ __('Hai,' . ' ' . Auth::user()->name . '! ') }} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container mx-auto mt-5"> | ||
<div class="grid grid-cols-3 gap-4"> | ||
<div class="overflow-hidden bg-white shadow-sm dark:bg-gray-800 sm:rounded-lg"> | ||
<div class="p-6 text-gray-900 dark:text-gray-100"> | ||
{{ __('Data Mahasiswa') }} | ||
</div> | ||
<div class="p-6 text-gray-900 dark:text-gray-100"> | ||
{{ "1000 Data Mahasiswa" }} | ||
</div> | ||
</div> | ||
<div class="overflow-hidden bg-white shadow-sm dark:bg-gray-800 sm:rounded-lg"> | ||
<div class="p-6 text-gray-900 dark:text-gray-100"> | ||
{{ __('Data Dosen') }} | ||
</div> | ||
<div class="p-6 text-gray-900 dark:text-gray-100"> | ||
{{ "69 Data Dosen" }} | ||
</div> | ||
</div> | ||
<div class="overflow-hidden bg-white shadow-sm dark:bg-gray-800 sm:rounded-lg"> | ||
<div class="p-6 text-gray-900 dark:text-gray-100"> | ||
{{ __('Data Mata Kuliah') }} | ||
</div> | ||
<div class="p-6 text-gray-900 dark:text-gray-100"> | ||
{{ "70 Data Mata Kuliah" }} | ||
</div> | ||
</div> | ||
</div> | ||
<div class="px-4 py-4 mx-auto lg:py-12 sm:px-6 md:px-4 lg:max-w-6xl xl:max-w-7xl lg:px-8"> | ||
<div class="flex flex-col p-6 px-0 pt-0"> | ||
<h3 class="text-xl font-semibold leading-6 tracking-tighter dark:text-gray-200">Dashboard</h3> | ||
<p class="mt-1.5 text-sm text-muted-foreground dark:text-gray-300">Semua statistik yang berhubungan dengan | ||
akun anda</p> | ||
</div> | ||
<div class="grid gap-5 sm:grid-cols-2 lg:grid-cols-3"> | ||
<div | ||
class="p-8 text-gray-900 bg-white border rounded-lg shadow-sm dark:text-gray-200 dark:border-0 dark:bg-gray-800"> | ||
<h4 class="font-mono text-xl">700</h4><small class="block mt-6 text-sm text-muted-foreground">Daftar Registrasi | ||
Masyarakat</small> | ||
<x-detail-long-button :href="route('masyarakat.index')">Detail</x-detail-long-button> | ||
</div> | ||
<div | ||
class="p-8 text-gray-900 bg-white border rounded-lg shadow-sm dark:text-gray-200 dark:border-0 dark:bg-gray-800"> | ||
<h4 class="font-mono text-xl">69</h4><small class="block mt-6 text-sm text-muted-foreground">Daftar Registrasi | ||
Kurir</small> | ||
<x-detail-long-button href="">Detail</x-detail-long-button> | ||
</div> | ||
<div | ||
class="p-8 text-gray-900 bg-white border rounded-lg shadow-sm dark:text-gray-200 dark:border-0 dark:bg-gray-800"> | ||
<h4 class="font-mono text-xl">0</h4><small class="block mt-6 text-sm text-muted-foreground">Data | ||
Dropbox</small> | ||
<x-detail-long-button href="">Detail</x-detail-long-button> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</x-app-layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters