-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Starter kit for orders, messages and dashboard
- Loading branch information
1 parent
e6aad5b
commit 20fc4a7
Showing
3 changed files
with
34 additions
and
3 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 |
---|---|---|
@@ -1,3 +1,18 @@ | ||
<div> | ||
{{-- To attain knowledge, add things every day; To attain wisdom, subtract things every day. --}} | ||
<x-slot name="header"> | ||
<h2 class="text-gray-800 leading-tight"> | ||
<i class="fas text-blue-500 fa-envelope"></i> | ||
{{ __('Messages') }} | ||
</h2> | ||
</x-slot> | ||
|
||
<div class="py-8"> | ||
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8"> | ||
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg"> | ||
<div class="p-6 text-gray-900"> | ||
{{ __("You're viewing messages!") }} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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,3 +1,18 @@ | ||
<div> | ||
{{-- The whole world belongs to you. --}} | ||
<x-slot name="header"> | ||
<h2 class="text-gray-800 leading-tight"> | ||
<i class="fas text-blue-500 fa-shopping-cart"></i> | ||
{{ __('Orders') }} | ||
</h2> | ||
</x-slot> | ||
|
||
<div class="py-8"> | ||
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8"> | ||
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg"> | ||
<div class="p-6 text-gray-900"> | ||
{{ __("You're viewing your orders!") }} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |