@mamut_1945/dashboard-ui 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/app/Helpers/MenuHelper.php +76 -0
  2. package/app/Http/Controllers/SidebarController.php +191 -0
  3. package/app/View/Components/CalenderArea.php +26 -0
  4. package/app/View/Components/common/CommonGridShape.php +26 -0
  5. package/app/View/Components/common/ComponentCard.php +26 -0
  6. package/app/View/Components/common/Form.php +24 -0
  7. package/app/View/Components/common/InputGroup.php +26 -0
  8. package/app/View/Components/common/PageBreadcrumb.php +26 -0
  9. package/app/View/Components/common/Preloader.php +26 -0
  10. package/app/View/Components/common/TableDropdown.php +26 -0
  11. package/app/View/Components/common/ThemeToggle.php +26 -0
  12. package/app/View/Components/header/UserDropdown.php +26 -0
  13. package/app/View/Components/ui/Alert.php +26 -0
  14. package/app/View/Components/ui/Avatar.php +26 -0
  15. package/app/View/Components/ui/Badge.php +26 -0
  16. package/app/View/Components/ui/Button.php +26 -0
  17. package/app/View/Components/ui/Modal.php +56 -0
  18. package/app/View/Components/ui/YoutubeEmbed.php +26 -0
  19. package/package.json +4 -2
  20. package/public/favicon.ico +0 -0
  21. package/public/images/logo/auth-logo.svg +53 -0
  22. package/public/images/logo/logo-dark.svg +53 -0
  23. package/public/images/logo/logo-icon.svg +44 -0
  24. package/public/images/logo/logo.svg +53 -0
  25. package/public/images/user/owner.jpg +0 -0
  26. package/public/images/user/owner.png +0 -0
  27. package/public/images/user/owner.webp +0 -0
  28. package/public/images/user/user-01.jpg +0 -0
  29. package/public/images/user/user-02.jpg +0 -0
  30. package/public/images/user/user-03.jpg +0 -0
  31. package/public/images/user/user-04.jpg +0 -0
  32. package/public/images/user/user-05.jpg +0 -0
  33. package/public/images/user/user-06.jpg +0 -0
  34. package/public/images/user/user-07.jpg +0 -0
  35. package/public/images/user/user-08.jpg +0 -0
  36. package/public/images/user/user-09.jpg +0 -0
  37. package/public/images/user/user-10.jpg +0 -0
  38. package/public/images/user/user-11.jpg +0 -0
  39. package/public/images/user/user-12.jpg +0 -0
  40. package/public/images/user/user-13.jpg +0 -0
  41. package/public/images/user/user-14.jpg +0 -0
  42. package/public/images/user/user-15.jpg +0 -0
  43. package/public/images/user/user-16.jpg +0 -0
  44. package/public/images/user/user-17.jpg +0 -0
  45. package/public/images/user/user-18.jpg +0 -0
  46. package/public/images/user/user-19.jpg +0 -0
  47. package/public/images/user/user-20.jpg +0 -0
  48. package/public/images/user/user-21.jpg +0 -0
  49. package/public/images/user/user-22.jpg +0 -0
  50. package/public/images/user/user-23.jpg +0 -0
  51. package/public/images/user/user-24.jpg +0 -0
  52. package/public/images/user/user-25.jpg +0 -0
  53. package/public/images/user/user-26.jpg +0 -0
  54. package/public/images/user/user-27.jpg +0 -0
  55. package/public/images/user/user-28.jpg +0 -0
  56. package/public/images/user/user-29.jpg +0 -0
  57. package/public/images/user/user-30.jpg +0 -0
  58. package/public/images/user/user-31.jpg +0 -0
  59. package/public/images/user/user-32.jpg +0 -0
  60. package/public/images/user/user-33.jpg +0 -0
  61. package/public/images/user/user-34.jpg +0 -0
  62. package/public/images/user/user-35.jpg +0 -0
  63. package/public/images/user/user-36.jpg +0 -0
  64. package/public/images/user/user-37.jpg +0 -0
  65. package/routes/console.php +8 -0
  66. package/routes/web.php +31 -0
@@ -0,0 +1,76 @@
1
+ <?php
2
+
3
+ namespace App\Helpers;
4
+
5
+ class MenuHelper
6
+ {
7
+ public static function getMainNavItems()
8
+ {
9
+ return [
10
+ [
11
+ 'name' => 'Forms',
12
+ 'icon' => 'forms',
13
+ 'path' => '/form-example',
14
+ ],
15
+ [
16
+ 'name' => 'Tables',
17
+ 'icon' => 'tables',
18
+ 'path' => '/table-example',
19
+ ],
20
+ ];
21
+ }
22
+
23
+
24
+
25
+ public static function getMenuGroups()
26
+ {
27
+ return [
28
+ [
29
+ 'title' => 'Menu',
30
+ 'items' => self::getMainNavItems()
31
+ ],
32
+ ];
33
+ }
34
+
35
+ public static function isActive($path)
36
+ {
37
+ return request()->is(ltrim($path, '/'));
38
+ }
39
+
40
+ public static function getIconSvg($iconName)
41
+ {
42
+ $icons = [
43
+ 'dashboard' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 3.25C4.25736 3.25 3.25 4.25736 3.25 5.5V8.99998C3.25 10.2426 4.25736 11.25 5.5 11.25H9C10.2426 11.25 11.25 10.2426 11.25 8.99998V5.5C11.25 4.25736 10.2426 3.25 9 3.25H5.5ZM4.75 5.5C4.75 5.08579 5.08579 4.75 5.5 4.75H9C9.41421 4.75 9.75 5.08579 9.75 5.5V8.99998C9.75 9.41419 9.41421 9.74998 9 9.74998H5.5C5.08579 9.74998 4.75 9.41419 4.75 8.99998V5.5ZM5.5 12.75C4.25736 12.75 3.25 13.7574 3.25 15V18.5C3.25 19.7426 4.25736 20.75 5.5 20.75H9C10.2426 20.75 11.25 19.7427 11.25 18.5V15C11.25 13.7574 10.2426 12.75 9 12.75H5.5ZM4.75 15C4.75 14.5858 5.08579 14.25 5.5 14.25H9C9.41421 14.25 9.75 14.5858 9.75 15V18.5C9.75 18.9142 9.41421 19.25 9 19.25H5.5C5.08579 19.25 4.75 18.9142 4.75 18.5V15ZM12.75 5.5C12.75 4.25736 13.7574 3.25 15 3.25H18.5C19.7426 3.25 20.75 4.25736 20.75 5.5V8.99998C20.75 10.2426 19.7426 11.25 18.5 11.25H15C13.7574 11.25 12.75 10.2426 12.75 8.99998V5.5ZM15 4.75C14.5858 4.75 14.25 5.08579 14.25 5.5V8.99998C14.25 9.41419 14.5858 9.74998 15 9.74998H18.5C18.9142 9.74998 19.25 9.41419 19.25 8.99998V5.5C19.25 5.08579 18.9142 4.75 18.5 4.75H15ZM15 12.75C13.7574 12.75 12.75 13.7574 12.75 15V18.5C12.75 19.7426 13.7574 20.75 15 20.75H18.5C19.7426 20.75 20.75 19.7427 20.75 18.5V15C20.75 13.7574 19.7426 12.75 18.5 12.75H15ZM14.25 15C14.25 14.5858 14.5858 14.25 15 14.25H18.5C18.9142 14.25 19.25 14.5858 19.25 15V18.5C19.25 18.9142 18.9142 19.25 18.5 19.25H15C14.5858 19.25 14.25 18.9142 14.25 18.5V15Z" fill="currentColor"></path></svg>',
44
+
45
+ 'ai-assistant' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.75 2.42969V7.70424M9.42261 13.673C10.0259 14.4307 10.9562 14.9164 12 14.9164C13.0438 14.9164 13.9742 14.4307 14.5775 13.673M20 12V18.5C20 19.3284 19.3284 20 18.5 20H5.5C4.67157 20 4 19.3284 4 18.5V12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.75 2.42969V2.43969M9.50391 9.875L9.50391 9.885M14.4961 9.875V9.885" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>',
46
+
47
+ 'ecommerce' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.31641 4H3.49696C4.24468 4 4.87822 4.55068 4.98234 5.29112L5.13429 6.37161M5.13429 6.37161L6.23641 14.2089C6.34053 14.9493 6.97407 15.5 7.72179 15.5L17.0833 15.5C17.6803 15.5 18.2205 15.146 18.4587 14.5986L21.126 8.47023C21.5572 7.4795 20.8312 6.37161 19.7507 6.37161H5.13429Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.7832 19.5H7.7932M16.3203 19.5H16.3303" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>',
48
+
49
+ 'calendar' => '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C8.41421 2 8.75 2.33579 8.75 2.75V3.75H15.25V2.75C15.25 2.33579 15.5858 2 16 2C16.4142 2 16.75 2.33579 16.75 2.75V3.75H18.5C19.7426 3.75 20.75 4.75736 20.75 6V9V19C20.75 20.2426 19.7426 21.25 18.5 21.25H5.5C4.25736 21.25 3.25 20.2426 3.25 19V9V6C3.25 4.75736 4.25736 3.75 5.5 3.75H7.25V2.75C7.25 2.33579 7.58579 2 8 2ZM8 5.25H5.5C5.08579 5.25 4.75 5.58579 4.75 6V8.25H19.25V6C19.25 5.58579 18.9142 5.25 18.5 5.25H16H8ZM19.25 9.75H4.75V19C4.75 19.4142 5.08579 19.75 5.5 19.75H18.5C18.9142 19.75 19.25 19.4142 19.25 19V9.75Z" fill="currentColor"></path></svg>',
50
+
51
+ 'user-profile' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 14.1526 4.3002 16.1184 5.61936 17.616C6.17279 15.3096 8.24852 13.5955 10.7246 13.5955H13.2746C15.7509 13.5955 17.8268 15.31 18.38 17.6167C19.6996 16.119 20.5 14.153 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM17.0246 18.8566V18.8455C17.0246 16.7744 15.3457 15.0955 13.2746 15.0955H10.7246C8.65354 15.0955 6.97461 16.7744 6.97461 18.8455V18.856C8.38223 19.8895 10.1198 20.5 12 20.5C13.8798 20.5 15.6171 19.8898 17.0246 18.8566ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM11.9991 7.25C10.8847 7.25 9.98126 8.15342 9.98126 9.26784C9.98126 10.3823 10.8847 11.2857 11.9991 11.2857C13.1135 11.2857 14.0169 10.3823 14.0169 9.26784C14.0169 8.15342 13.1135 7.25 11.9991 7.25ZM8.48126 9.26784C8.48126 7.32499 10.0563 5.75 11.9991 5.75C13.9419 5.75 15.5169 7.32499 15.5169 9.26784C15.5169 11.2107 13.9419 12.7857 11.9991 12.7857C10.0563 12.7857 8.48126 11.2107 8.48126 9.26784Z" fill="currentColor"></path></svg>',
52
+
53
+ 'task' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.75586 5.50098C7.75586 5.08676 8.09165 4.75098 8.50586 4.75098H18.4985C18.9127 4.75098 19.2485 5.08676 19.2485 5.50098L19.2485 15.4956C19.2485 15.9098 18.9127 16.2456 18.4985 16.2456H8.50586C8.09165 16.2456 7.75586 15.9098 7.75586 15.4956V5.50098ZM8.50586 3.25098C7.26322 3.25098 6.25586 4.25834 6.25586 5.50098V6.26318H5.50195C4.25931 6.26318 3.25195 7.27054 3.25195 8.51318V18.4995C3.25195 19.7422 4.25931 20.7495 5.50195 20.7495H15.4883C16.7309 20.7495 17.7383 19.7421 17.7383 18.4995L17.7383 17.7456H18.4985C19.7411 17.7456 20.7485 16.7382 20.7485 15.4956L20.7485 5.50097C20.7485 4.25833 19.7411 3.25098 18.4985 3.25098H8.50586ZM16.2383 17.7456H8.50586C7.26322 17.7456 6.25586 16.7382 6.25586 15.4956V7.76318H5.50195C5.08774 7.76318 4.75195 8.09897 4.75195 8.51318V18.4995C4.75195 18.9137 5.08774 19.2495 5.50195 19.2495H15.4883C15.9025 19.2495 16.2383 18.9137 16.2383 18.4995L16.2383 17.7456Z" fill="currentColor"></path></svg>',
54
+
55
+ 'forms' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 3.25C4.25736 3.25 3.25 4.25736 3.25 5.5V18.5C3.25 19.7426 4.25736 20.75 5.5 20.75H18.5001C19.7427 20.75 20.7501 19.7426 20.7501 18.5V5.5C20.7501 4.25736 19.7427 3.25 18.5001 3.25H5.5ZM4.75 5.5C4.75 5.08579 5.08579 4.75 5.5 4.75H18.5001C18.9143 4.75 19.2501 5.08579 19.2501 5.5V18.5C19.2501 18.9142 18.9143 19.25 18.5001 19.25H5.5C5.08579 19.25 4.75 18.9142 4.75 18.5V5.5ZM6.25005 9.7143C6.25005 9.30008 6.58583 8.9643 7.00005 8.9643L17 8.96429C17.4143 8.96429 17.75 9.30008 17.75 9.71429C17.75 10.1285 17.4143 10.4643 17 10.4643L7.00005 10.4643C6.58583 10.4643 6.25005 10.1285 6.25005 9.7143ZM6.25005 14.2857C6.25005 13.8715 6.58583 13.5357 7.00005 13.5357H17C17.4143 13.5357 17.75 13.8715 17.75 14.2857C17.75 14.6999 17.4143 15.0357 17 15.0357H7.00005C6.58583 15.0357 6.25005 14.6999 6.25005 14.2857Z" fill="currentColor"></path></svg>',
56
+
57
+ 'tables' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.25 5.5C3.25 4.25736 4.25736 3.25 5.5 3.25H18.5C19.7426 3.25 20.75 4.25736 20.75 5.5V18.5C20.75 19.7426 19.7426 20.75 18.5 20.75H5.5C4.25736 20.75 3.25 19.7426 3.25 18.5V5.5ZM5.5 4.75C5.08579 4.75 4.75 5.08579 4.75 5.5V8.58325L19.25 8.58325V5.5C19.25 5.08579 18.9142 4.75 18.5 4.75H5.5ZM19.25 10.0833H15.416V13.9165H19.25V10.0833ZM13.916 10.0833L10.083 10.0833V13.9165L13.916 13.9165V10.0833ZM8.58301 10.0833H4.75V13.9165H8.58301V10.0833ZM4.75 18.5V15.4165H8.58301V19.25H5.5C5.08579 19.25 4.75 18.9142 4.75 18.5ZM10.083 19.25V15.4165L13.916 15.4165V19.25H10.083ZM15.416 19.25V15.4165H19.25V18.5C19.25 18.9142 18.9142 19.25 18.5 19.25H15.416Z" fill="currentColor"></path></svg>',
58
+
59
+ 'pages' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.50391 4.25C8.50391 3.83579 8.83969 3.5 9.25391 3.5H15.2777C15.4766 3.5 15.6674 3.57902 15.8081 3.71967L18.2807 6.19234C18.4214 6.333 18.5004 6.52376 18.5004 6.72268V16.75C18.5004 17.1642 18.1646 17.5 17.7504 17.5H16.248V17.4993H14.748V17.5H9.25391C8.83969 17.5 8.50391 17.1642 8.50391 16.75V4.25ZM14.748 19H9.25391C8.01126 19 7.00391 17.9926 7.00391 16.75V6.49854H6.24805C5.83383 6.49854 5.49805 6.83432 5.49805 7.24854V19.75C5.49805 20.1642 5.83383 20.5 6.24805 20.5H13.998C14.4123 20.5 14.748 20.1642 14.748 19.75L14.748 19ZM7.00391 4.99854V4.25C7.00391 3.00736 8.01127 2 9.25391 2H15.2777C15.8745 2 16.4468 2.23705 16.8687 2.659L19.3414 5.13168C19.7634 5.55364 20.0004 6.12594 20.0004 6.72268V16.75C20.0004 17.9926 18.9931 19 17.7504 19H16.248L16.248 19.75C16.248 20.9926 15.2407 22 13.998 22H6.24805C5.00541 22 3.99805 20.9926 3.99805 19.75V7.24854C3.99805 6.00589 5.00541 4.99854 6.24805 4.99854H7.00391Z" fill="currentColor"></path></svg>',
60
+
61
+ 'charts' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.00002 12.0957C4.00002 7.67742 7.58174 4.0957 12 4.0957C16.4183 4.0957 20 7.67742 20 12.0957C20 16.514 16.4183 20.0957 12 20.0957H5.06068L6.34317 18.8132C6.48382 18.6726 6.56284 18.4818 6.56284 18.2829C6.56284 18.084 6.48382 17.8932 6.34317 17.7526C4.89463 16.304 4.00002 14.305 4.00002 12.0957ZM12 2.5957C6.75332 2.5957 2.50002 6.849 2.50002 12.0957C2.50002 14.4488 3.35633 16.603 4.77303 18.262L2.71969 20.3154C2.50519 20.5299 2.44103 20.8525 2.55711 21.1327C2.6732 21.413 2.94668 21.5957 3.25002 21.5957H12C17.2467 21.5957 21.5 17.3424 21.5 12.0957C21.5 6.849 17.2467 2.5957 12 2.5957ZM7.62502 10.8467C6.93467 10.8467 6.37502 11.4063 6.37502 12.0967C6.37502 12.787 6.93467 13.3467 7.62502 13.3467H7.62512C8.31548 13.3467 8.87512 12.787 8.87512 12.0967C8.87512 11.4063 8.31548 10.8467 7.62512 10.8467H7.62502ZM10.75 12.0967C10.75 11.4063 11.3097 10.8467 12 10.8467H12.0001C12.6905 10.8467 13.2501 11.4063 13.2501 12.0967C13.2501 12.787 12.6905 13.3467 12.0001 13.3467H12C11.3097 13.3467 10.75 12.787 10.75 12.0967ZM16.375 10.8467C15.6847 10.8467 15.125 11.4063 15.125 12.0967C15.125 12.787 15.6847 13.3467 16.375 13.3467H16.3751C17.0655 13.3467 17.6251 12.787 17.6251 12.0967C17.6251 11.4063 17.0655 10.8467 16.3751 10.8467H16.375Z" fill="currentColor"></path></svg>',
62
+
63
+ 'ui-elements' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.665 3.75618C11.8762 3.65061 12.1247 3.65061 12.3358 3.75618L18.7807 6.97853L12.3358 10.2009C12.1247 10.3064 11.8762 10.3064 11.665 10.2009L5.22014 6.97853L11.665 3.75618ZM4.29297 8.19199V16.0946C4.29297 16.3787 4.45347 16.6384 4.70757 16.7654L11.25 20.0365V11.6512C11.1631 11.6205 11.0777 11.5843 10.9942 11.5425L4.29297 8.19199ZM12.75 20.037L19.2933 16.7654C19.5474 16.6384 19.7079 16.3787 19.7079 16.0946V8.19199L13.0066 11.5425C12.9229 11.5844 12.8372 11.6207 12.75 11.6515V20.037ZM13.0066 2.41453C12.3732 2.09783 11.6277 2.09783 10.9942 2.41453L4.03676 5.89316C3.27449 6.27429 2.79297 7.05339 2.79297 7.90563V16.0946C2.79297 16.9468 3.27448 17.7259 4.03676 18.1071L10.9942 21.5857L11.3296 20.9149L10.9942 21.5857C11.6277 21.9024 12.3732 21.9024 13.0066 21.5857L19.9641 18.1071C20.7264 17.7259 21.2079 16.9468 21.2079 16.0946V7.90563C21.2079 7.05339 20.7264 6.27429 19.9641 5.89316L13.0066 2.41453Z" fill="currentColor"></path></svg>',
64
+
65
+ 'authentication' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 2.75C14 2.33579 14.3358 2 14.75 2C15.1642 2 15.5 2.33579 15.5 2.75V5.73291L17.75 5.73291H19C19.4142 5.73291 19.75 6.0687 19.75 6.48291C19.75 6.89712 19.4142 7.23291 19 7.23291H18.5L18.5 12.2329C18.5 15.5691 15.9866 18.3183 12.75 18.6901V21.25C12.75 21.6642 12.4142 22 12 22C11.5858 22 11.25 21.6642 11.25 21.25V18.6901C8.01342 18.3183 5.5 15.5691 5.5 12.2329L5.5 7.23291H5C4.58579 7.23291 4.25 6.89712 4.25 6.48291C4.25 6.0687 4.58579 5.73291 5 5.73291L6.25 5.73291L8.5 5.73291L8.5 2.75C8.5 2.33579 8.83579 2 9.25 2C9.66421 2 10 2.33579 10 2.75L10 5.73291L14 5.73291V2.75ZM7 7.23291L7 12.2329C7 14.9943 9.23858 17.2329 12 17.2329C14.7614 17.2329 17 14.9943 17 12.2329L17 7.23291L7 7.23291Z" fill="currentColor"></path></svg>',
66
+
67
+ 'chat' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.00002 12.0957C4.00002 7.67742 7.58174 4.0957 12 4.0957C16.4183 4.0957 20 7.67742 20 12.0957C20 16.514 16.4183 20.0957 12 20.0957H5.06068L6.34317 18.8132C6.48382 18.6726 6.56284 18.4818 6.56284 18.2829C6.56284 18.084 6.48382 17.8932 6.34317 17.7526C4.89463 16.304 4.00002 14.305 4.00002 12.0957ZM12 2.5957C6.75332 2.5957 2.50002 6.849 2.50002 12.0957C2.50002 14.4488 3.35633 16.603 4.77303 18.262L2.71969 20.3154C2.50519 20.5299 2.44103 20.8525 2.55711 21.1327C2.6732 21.413 2.94668 21.5957 3.25002 21.5957H12C17.2467 21.5957 21.5 17.3424 21.5 12.0957C21.5 6.849 17.2467 2.5957 12 2.5957ZM7.62502 10.8467C6.93467 10.8467 6.37502 11.4063 6.37502 12.0967C6.37502 12.787 6.93467 13.3467 7.62502 13.3467H7.62512C8.31548 13.3467 8.87512 12.787 8.87512 12.0967C8.87512 11.4063 8.31548 10.8467 7.62512 10.8467H7.62502ZM10.75 12.0967C10.75 11.4063 11.3097 10.8467 12 10.8467H12.0001C12.6905 10.8467 13.2501 11.4063 13.2501 12.0967C13.2501 12.787 12.6905 13.3467 12.0001 13.3467H12C11.3097 13.3467 10.75 12.787 10.75 12.0967ZM16.375 10.8467C15.6847 10.8467 15.125 11.4063 15.125 12.0967C15.125 12.787 15.6847 13.3467 16.375 13.3467H16.3751C17.0655 13.3467 17.6251 12.787 17.6251 12.0967C17.6251 11.4063 17.0655 10.8467 16.3751 10.8467H16.375Z" fill="currentColor"></path></svg>',
68
+
69
+ 'support-ticket' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 17.0518V12C20 7.58174 16.4183 4 12 4C7.58168 4 3.99994 7.58174 3.99994 12V17.0518M19.9998 14.041V19.75C19.9998 20.5784 19.3282 21.25 18.4998 21.25H13.9998M6.5 18.75H5.5C4.67157 18.75 4 18.0784 4 17.25V13.75C4 12.9216 4.67157 12.25 5.5 12.25H6.5C7.32843 12.25 8 12.9216 8 13.75V17.25C8 18.0784 7.32843 18.75 6.5 18.75ZM17.4999 18.75H18.4999C19.3284 18.75 19.9999 18.0784 19.9999 17.25V13.75C19.9999 12.9216 19.3284 12.25 18.4999 12.25H17.4999C16.6715 12.25 15.9999 12.9216 15.9999 13.75V17.25C15.9999 18.0784 16.6715 18.75 17.4999 18.75Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>',
70
+
71
+ 'email' => '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 8.187V17.25C3.5 17.6642 3.83579 18 4.25 18H19.75C20.1642 18 20.5 17.6642 20.5 17.25V8.18747L13.2873 13.2171C12.5141 13.7563 11.4866 13.7563 10.7134 13.2171L3.5 8.187ZM20.5 6.2286C20.5 6.23039 20.5 6.23218 20.5 6.23398V6.24336C20.4976 6.31753 20.4604 6.38643 20.3992 6.42905L12.4293 11.9867C12.1716 12.1664 11.8291 12.1664 11.5713 11.9867L3.60116 6.42885C3.538 6.38481 3.50035 6.31268 3.50032 6.23568C3.50028 6.10553 3.60577 6 3.73592 6H20.2644C20.3922 6 20.4963 6.10171 20.5 6.2286ZM22 6.25648V17.25C22 18.4926 20.9926 19.5 19.75 19.5H4.25C3.00736 19.5 2 18.4926 2 17.25V6.23398C2 6.22371 2.00021 6.2135 2.00061 6.20333C2.01781 5.25971 2.78812 4.5 3.73592 4.5H20.2644C21.2229 4.5 22 5.27697 22.0001 6.23549C22.0001 6.24249 22.0001 6.24949 22 6.25648Z" fill="currentColor"></path></svg>',
72
+ ];
73
+
74
+ return $icons[$iconName] ?? '<svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" fill="currentColor"/></svg>';
75
+ }
76
+ }
@@ -0,0 +1,191 @@
1
+ <?php
2
+
3
+ namespace App\Http\Controllers;
4
+
5
+ use Illuminate\Http\Request;
6
+
7
+ class SidebarController extends Controller
8
+ {
9
+ public function getMenuData()
10
+ {
11
+ $menuGroups = [
12
+ [
13
+ 'title' => 'Menu',
14
+ 'items' => [
15
+ [
16
+ 'icon' => 'grid-icon',
17
+ 'name' => 'Dashboard',
18
+ 'subItems' => [
19
+ ['name' => 'Ecommerce', 'path' => '/'],
20
+ ['name' => 'Analytics', 'path' => '/analytics'],
21
+ ['name' => 'Marketing', 'path' => '/marketing'],
22
+ ['name' => 'CRM', 'path' => '/crm'],
23
+ ['name' => 'Stocks', 'path' => '/stocks'],
24
+ ['name' => 'SaaS', 'path' => '/saas', 'new' => true],
25
+ ['name' => 'Logistics', 'path' => '/logistics', 'new' => true],
26
+ ],
27
+ ],
28
+ [
29
+ 'icon' => 'bot-icon',
30
+ 'name' => 'AI Assistant',
31
+ 'new' => true,
32
+ 'subItems' => [
33
+ ['name' => 'Text Generator', 'path' => '/text-generator'],
34
+ ['name' => 'Image Generator', 'path' => '/image-generator'],
35
+ ['name' => 'Code Generator', 'path' => '/code-generator'],
36
+ ['name' => 'Video Generator', 'path' => '/video-generator'],
37
+ ],
38
+ ],
39
+ [
40
+ 'icon' => 'cart-icon',
41
+ 'name' => 'E-commerce',
42
+ 'new' => true,
43
+ 'subItems' => [
44
+ ['name' => 'Products', 'path' => '/products-list'],
45
+ ['name' => 'Add Product', 'path' => '/add-product'],
46
+ ['name' => 'Billing', 'path' => '/billing'],
47
+ ['name' => 'Invoices', 'path' => '/invoices'],
48
+ ['name' => 'Single Invoice', 'path' => '/single-invoice'],
49
+ ['name' => 'Create Invoice', 'path' => '/create-invoice'],
50
+ ['name' => 'Transactions', 'path' => '/transactions'],
51
+ ['name' => 'Single Transaction', 'path' => '/single-transaction'],
52
+ ],
53
+ ],
54
+ [
55
+ 'icon' => 'calendar-icon',
56
+ 'name' => 'Calendar',
57
+ 'path' => '/calendar',
58
+ ],
59
+ [
60
+ 'icon' => 'user-circle-icon',
61
+ 'name' => 'User Profile',
62
+ 'path' => '/profile',
63
+ ],
64
+ [
65
+ 'icon' => 'task-icon',
66
+ 'name' => 'Task',
67
+ 'subItems' => [
68
+ ['name' => 'List', 'path' => '/task-list', 'pro' => false],
69
+ ['name' => 'Kanban', 'path' => '/task-kanban', 'pro' => false],
70
+ ],
71
+ ],
72
+ [
73
+ 'icon' => 'list-icon',
74
+ 'name' => 'Forms',
75
+ 'subItems' => [
76
+ ['name' => 'Form Elements', 'path' => '/form-elements', 'pro' => false],
77
+ ['name' => 'Form Layout', 'path' => '/form-layout', 'pro' => false],
78
+ ],
79
+ ],
80
+ [
81
+ 'icon' => 'table-icon',
82
+ 'name' => 'Tables',
83
+ 'subItems' => [
84
+ ['name' => 'Basic Tables', 'path' => '/basic-tables', 'pro' => false],
85
+ ['name' => 'Data Tables', 'path' => '/data-tables', 'pro' => false],
86
+ ],
87
+ ],
88
+ [
89
+ 'icon' => 'page-icon',
90
+ 'name' => 'Pages',
91
+ 'subItems' => [
92
+ ['name' => 'File Manager', 'path' => '/file-manager', 'pro' => false],
93
+ ['name' => 'Pricing Tables', 'path' => '/pricing-tables', 'pro' => false],
94
+ ['name' => 'Faqs', 'path' => '/faq', 'pro' => false],
95
+ ['name' => 'API Keys', 'path' => '/api-keys', 'new' => true],
96
+ ['name' => 'Integrations', 'path' => '/integrations', 'new' => true],
97
+ ['name' => 'Blank Page', 'path' => '/blank', 'pro' => false],
98
+ ['name' => '404 Error', 'path' => '/error-404', 'pro' => false],
99
+ ['name' => '500 Error', 'path' => '/error-500', 'pro' => false],
100
+ ['name' => '503 Error', 'path' => '/error-503', 'pro' => false],
101
+ ['name' => 'Coming Soon', 'path' => '/coming-soon', 'pro' => false],
102
+ ['name' => 'Maintenance', 'path' => '/maintenance', 'pro' => false],
103
+ ['name' => 'Success', 'path' => '/success', 'pro' => false],
104
+ ],
105
+ ],
106
+ ],
107
+ ],
108
+ [
109
+ 'title' => 'Support',
110
+ 'items' => [
111
+ [
112
+ 'icon' => 'chat-icon',
113
+ 'name' => 'Chat',
114
+ 'path' => '/chat',
115
+ ],
116
+ [
117
+ 'icon' => 'call-icon',
118
+ 'name' => 'Support Ticket',
119
+ 'new' => true,
120
+ 'subItems' => [
121
+ ['name' => 'Ticket List', 'path' => '/support-tickets'],
122
+ ['name' => 'Ticket Reply', 'path' => '/support-ticket-reply'],
123
+ ],
124
+ ],
125
+ [
126
+ 'icon' => 'mail-icon',
127
+ 'name' => 'Email',
128
+ 'subItems' => [
129
+ ['name' => 'Inbox', 'path' => '/inbox', 'pro' => false],
130
+ ['name' => 'Details', 'path' => '/inbox-details', 'pro' => false],
131
+ ],
132
+ ],
133
+ ],
134
+ ],
135
+ [
136
+ 'title' => 'Others',
137
+ 'items' => [
138
+ [
139
+ 'icon' => 'pie-chart-icon',
140
+ 'name' => 'Charts',
141
+ 'subItems' => [
142
+ ['name' => 'Line Chart', 'path' => '/line-chart', 'pro' => false],
143
+ ['name' => 'Bar Chart', 'path' => '/bar-chart', 'pro' => false],
144
+ ['name' => 'Pie Chart', 'path' => '/pie-chart', 'pro' => false],
145
+ ],
146
+ ],
147
+ [
148
+ 'icon' => 'box-cube-icon',
149
+ 'name' => 'UI Elements',
150
+ 'subItems' => [
151
+ ['name' => 'Alerts', 'path' => '/alerts', 'pro' => false],
152
+ ['name' => 'Avatar', 'path' => '/avatars', 'pro' => false],
153
+ ['name' => 'Badge', 'path' => '/badge', 'pro' => false],
154
+ ['name' => 'Breadcrumb', 'path' => '/breadcrumb', 'pro' => false],
155
+ ['name' => 'Buttons', 'path' => '/buttons', 'pro' => false],
156
+ ['name' => 'Buttons Group', 'path' => '/buttons-group', 'pro' => false],
157
+ ['name' => 'Cards', 'path' => '/cards', 'pro' => false],
158
+ ['name' => 'Carousel', 'path' => '/carousel', 'pro' => false],
159
+ ['name' => 'Dropdowns', 'path' => '/dropdowns', 'pro' => false],
160
+ ['name' => 'Images', 'path' => '/image', 'pro' => false],
161
+ ['name' => 'Links', 'path' => '/links', 'pro' => false],
162
+ ['name' => 'List', 'path' => '/list', 'pro' => false],
163
+ ['name' => 'Modals', 'path' => '/modals', 'pro' => false],
164
+ ['name' => 'Notification', 'path' => '/notifications', 'pro' => false],
165
+ ['name' => 'Pagination', 'path' => '/pagination', 'pro' => false],
166
+ ['name' => 'Popovers', 'path' => '/popovers', 'pro' => false],
167
+ ['name' => 'Progressbar', 'path' => '/progress-bar', 'pro' => false],
168
+ ['name' => 'Ribbons', 'path' => '/ribbons', 'pro' => false],
169
+ ['name' => 'Spinners', 'path' => '/spinners', 'pro' => false],
170
+ ['name' => 'Tabs', 'path' => '/tabs', 'pro' => false],
171
+ ['name' => 'Tooltips', 'path' => '/tooltips', 'pro' => false],
172
+ ['name' => 'Videos', 'path' => '/videos', 'pro' => false],
173
+ ],
174
+ ],
175
+ [
176
+ 'icon' => 'plug-in-icon',
177
+ 'name' => 'Authentication',
178
+ 'subItems' => [
179
+ ['name' => 'Sign In', 'path' => '/signin', 'pro' => false],
180
+ ['name' => 'Sign Up', 'path' => '/signup', 'pro' => false],
181
+ ['name' => 'Reset Password', 'path' => '/reset-password', 'pro' => false],
182
+ ['name' => 'Two Step Verification', 'path' => '/two-step-verification', 'pro' => false],
183
+ ],
184
+ ],
185
+ ],
186
+ ],
187
+ ];
188
+
189
+ return view('components.sidebar', compact('menuGroups'));
190
+ }
191
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class CalenderArea extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.calender-area');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\common;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class CommonGridShape extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.common.common-grid-shape');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\common;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class ComponentCard extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.common.component-card');
25
+ }
26
+ }
@@ -0,0 +1,24 @@
1
+ <?php
2
+ namespace App\View\Components\Common;
3
+
4
+ use Illuminate\View\Component;
5
+
6
+ class Form extends Component
7
+ {
8
+ public $action;
9
+ public $method;
10
+ public $fields;
11
+
12
+ public function __construct($action = '#', $method = 'POST', $fields = [])
13
+ {
14
+ $this->action = $action;
15
+ $this->method = strtoupper($method);
16
+ $this->fields = $fields;
17
+ }
18
+
19
+ public function render()
20
+ {
21
+ return view('components.common.form');
22
+ }
23
+ }
24
+
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\Common;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class InputGroup extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.common.input-group');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\common;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class PageBreadcrumb extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.common.page-breadcrumb');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\common;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class Preloader extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.common.preloader');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\common;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class TableDropdown extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.common.table-dropdown');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\common;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class ThemeToggle extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.common.theme-toggle');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\header;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class UserDropdown extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.header.user-dropdown');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\ui;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class Alert extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.ui.alert');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\ui;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class Avatar extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.ui.avatar');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\ui;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class Badge extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.ui.badge');
25
+ }
26
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\ui;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class Button extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.ui.button');
25
+ }
26
+ }
@@ -0,0 +1,56 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\ui;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class Modal extends Component
10
+ {
11
+ // /**
12
+ // * Create a new component instance.
13
+ // */
14
+ // public function __construct()
15
+ // {
16
+ // //
17
+ // }
18
+
19
+ // /**
20
+ // * Get the view / contents that represent the component.
21
+ // */
22
+ // public function render(): View|Closure|string
23
+ // {
24
+ // return view('components.ui.modal');
25
+ // }
26
+
27
+
28
+
29
+ public $isOpen;
30
+ public $showCloseButton;
31
+ public $isFullscreen;
32
+ public $modalId;
33
+
34
+ /**
35
+ * Create a new component instance.
36
+ */
37
+ public function __construct(
38
+ $isOpen = false,
39
+ $showCloseButton = true,
40
+ $isFullscreen = false,
41
+ $modalId = null
42
+ ) {
43
+ $this->isOpen = $isOpen;
44
+ $this->showCloseButton = $showCloseButton;
45
+ $this->isFullscreen = $isFullscreen;
46
+ $this->modalId = $modalId ?? 'modal-' . uniqid();
47
+ }
48
+
49
+ /**
50
+ * Get the view / contents that represent the component.
51
+ */
52
+ public function render(): View|Closure|string
53
+ {
54
+ return view('components.ui.modal');
55
+ }
56
+ }
@@ -0,0 +1,26 @@
1
+ <?php
2
+
3
+ namespace App\View\Components\ui;
4
+
5
+ use Closure;
6
+ use Illuminate\Contracts\View\View;
7
+ use Illuminate\View\Component;
8
+
9
+ class YoutubeEmbed extends Component
10
+ {
11
+ /**
12
+ * Create a new component instance.
13
+ */
14
+ public function __construct()
15
+ {
16
+ //
17
+ }
18
+
19
+ /**
20
+ * Get the view / contents that represent the component.
21
+ */
22
+ public function render(): View|Closure|string
23
+ {
24
+ return view('components.ui.youtube-embed');
25
+ }
26
+ }
package/package.json CHANGED
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "@mamut_1945/dashboard-ui",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "files": [
5
+ "app",
6
+ "public",
5
7
  "resources",
6
- "tailwind"
8
+ "routes"
7
9
  ]
8
10
  }
Binary file
@@ -0,0 +1,53 @@
1
+ <svg width="231" height="48" viewBox="0 0 231 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.425781 12.6316C0.425781 5.65535 6.08113 0 13.0574 0H35.7942C42.7704 0 48.4258 5.65535 48.4258 12.6316V35.3684C48.4258 42.3446 42.7704 48 35.7942 48H13.0574C6.08113 48 0.425781 42.3446 0.425781 35.3684V12.6316Z" fill="#465FFF"/>
3
+ <g filter="url(#filter0_d_3903_56743)">
4
+ <path d="M13.0615 12.6323C13.0615 11.237 14.1926 10.106 15.5878 10.106C16.9831 10.106 18.1142 11.237 18.1142 12.6323V35.3691C18.1142 36.7644 16.9831 37.8954 15.5878 37.8954C14.1926 37.8954 13.0615 36.7644 13.0615 35.3691V12.6323Z" fill="white"/>
5
+ </g>
6
+ <g filter="url(#filter1_d_3903_56743)">
7
+ <path d="M22.5391 22.7353C22.5391 21.3401 23.6701 20.209 25.0654 20.209C26.4606 20.209 27.5917 21.3401 27.5917 22.7353V35.3669C27.5917 36.7621 26.4606 37.8932 25.0654 37.8932C23.6701 37.8932 22.5391 36.7621 22.5391 35.3669V22.7353Z" fill="white" fill-opacity="0.9" shape-rendering="crispEdges"/>
8
+ </g>
9
+ <g filter="url(#filter2_d_3903_56743)">
10
+ <path d="M32.0078 16.4189C32.0078 15.0236 33.1389 13.8926 34.5341 13.8926C35.9294 13.8926 37.0604 15.0236 37.0604 16.4189V35.3663C37.0604 36.7615 35.9294 37.8926 34.5341 37.8926C33.1389 37.8926 32.0078 36.7615 32.0078 35.3663V16.4189Z" fill="white" fill-opacity="0.7" shape-rendering="crispEdges"/>
11
+ </g>
12
+ <path d="M66.4258 15.1724H74.0585V37.0363H78.6239V15.1724H86.2567V10.9637H66.4258V15.1724Z" fill="white"/>
13
+ <path d="M91.3521 37.5C94.0984 37.5 96.4881 36.2516 97.2371 34.4326L97.5581 37.0363H101.375V26.3362C101.375 21.4498 98.4498 18.8818 93.7061 18.8818C88.9267 18.8818 85.788 21.3785 85.788 25.1948H89.4974C89.4974 23.3402 90.9241 22.2701 93.4921 22.2701C95.7035 22.2701 97.1301 23.2332 97.1301 25.6229V26.0152L91.8514 26.4075C87.6784 26.7285 85.3243 28.7616 85.3243 32.0073C85.3243 35.3243 87.607 37.5 91.3521 37.5ZM92.7788 34.2186C90.8171 34.2186 89.747 33.4339 89.747 31.8289C89.747 30.4022 90.7814 29.5106 93.4921 29.2609L97.1658 28.9756V29.9029C97.1658 32.6136 95.4538 34.2186 92.7788 34.2186Z" fill="white"/>
14
+ <path d="M107.825 15.8857C109.252 15.8857 110.429 14.7087 110.429 13.2464C110.429 11.784 109.252 10.6427 107.825 10.6427C106.327 10.6427 105.15 11.784 105.15 13.2464C105.15 14.7087 106.327 15.8857 107.825 15.8857ZM105.649 37.0363H110.001V19.4168H105.649V37.0363Z" fill="white"/>
15
+ <path d="M118.883 37.0363V10.5H114.568V37.0363H118.883Z" fill="white"/>
16
+ <path d="M126.337 37.0363L128.441 31.0086H138.179L140.283 37.0363H145.098L135.682 10.9637H131.009L121.593 37.0363H126.337ZM132.757 18.7391C133.007 18.0258 133.221 17.2411 133.328 16.7417C133.399 17.2768 133.649 18.0614 133.863 18.7391L136.859 27.1565H129.797L132.757 18.7391Z" fill="white"/>
17
+ <path d="M154.165 37.5C156.84 37.5 159.122 36.323 160.192 34.29L160.478 37.0363H164.472V10.5H160.157V21.6638C159.051 19.9161 156.875 18.8818 154.414 18.8818C149.1 18.8818 145.89 22.8052 145.89 28.2979C145.89 33.755 149.064 37.5 154.165 37.5ZM155.128 33.5053C152.096 33.5053 150.241 31.2939 150.241 28.1552C150.241 25.0165 152.096 22.7695 155.128 22.7695C158.159 22.7695 160.121 24.9808 160.121 28.1552C160.121 31.3296 158.159 33.5053 155.128 33.5053Z" fill="white"/>
18
+ <path d="M173.359 37.0363V27.0495C173.359 24.1962 175.035 22.8408 177.104 22.8408C179.172 22.8408 180.492 24.1605 180.492 26.6215V37.0363H184.843V27.0495C184.843 24.1605 186.448 22.8052 188.553 22.8052C190.621 22.8052 191.977 24.1248 191.977 26.6572V37.0363H196.292V25.5159C196.292 21.4498 193.938 18.8818 189.658 18.8818C186.983 18.8818 184.915 20.2015 184.023 22.2345C183.096 20.2015 181.241 18.8818 178.566 18.8818C176.034 18.8818 174.25 20.0231 173.359 21.4855L173.002 19.4168H169.007V37.0363H173.359Z" fill="white"/>
19
+ <path d="M202.74 15.8857C204.167 15.8857 205.344 14.7087 205.344 13.2464C205.344 11.784 204.167 10.6427 202.74 10.6427C201.242 10.6427 200.065 11.784 200.065 13.2464C200.065 14.7087 201.242 15.8857 202.74 15.8857ZM200.564 37.0363H204.916V19.4168H200.564V37.0363Z" fill="white"/>
20
+ <path d="M213.763 37.0363V27.5489C213.763 24.6955 215.403 22.8408 218.078 22.8408C220.325 22.8408 221.788 24.2675 221.788 27.2279V37.0363H226.139V26.1935C226.139 21.6281 223.856 18.8818 219.434 18.8818C217.044 18.8818 214.904 19.9161 213.798 21.6995L213.442 19.4168H209.411V37.0363H213.763Z" fill="white"/>
21
+ <defs>
22
+ <filter id="filter0_d_3903_56743" x="12.0615" y="9.60596" width="7.05273" height="29.7896" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
23
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
24
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
25
+ <feOffset dy="0.5"/>
26
+ <feGaussianBlur stdDeviation="0.5"/>
27
+ <feComposite in2="hardAlpha" operator="out"/>
28
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
29
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3903_56743"/>
30
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3903_56743" result="shape"/>
31
+ </filter>
32
+ <filter id="filter1_d_3903_56743" x="21.5391" y="19.709" width="7.05273" height="19.6843" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
33
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
34
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
35
+ <feOffset dy="0.5"/>
36
+ <feGaussianBlur stdDeviation="0.5"/>
37
+ <feComposite in2="hardAlpha" operator="out"/>
38
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
39
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3903_56743"/>
40
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3903_56743" result="shape"/>
41
+ </filter>
42
+ <filter id="filter2_d_3903_56743" x="31.0078" y="13.3926" width="7.05273" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
43
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
44
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
45
+ <feOffset dy="0.5"/>
46
+ <feGaussianBlur stdDeviation="0.5"/>
47
+ <feComposite in2="hardAlpha" operator="out"/>
48
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
49
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3903_56743"/>
50
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3903_56743" result="shape"/>
51
+ </filter>
52
+ </defs>
53
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg width="154" height="32" viewBox="0 0 154 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8.42105C0 3.77023 3.77023 0 8.42105 0H23.5789C28.2298 0 32 3.77023 32 8.42105V23.5789C32 28.2298 28.2298 32 23.5789 32H8.42105C3.77023 32 0 28.2298 0 23.5789V8.42105Z" fill="#465FFF"/>
3
+ <g filter="url(#filter0_d_1608_324)">
4
+ <path d="M8.42383 8.42152C8.42383 7.49135 9.17787 6.7373 10.108 6.7373C11.0382 6.7373 11.7922 7.49135 11.7922 8.42152V23.5794C11.7922 24.5096 11.0382 25.2636 10.108 25.2636C9.17787 25.2636 8.42383 24.5096 8.42383 23.5794V8.42152Z" fill="white"/>
5
+ </g>
6
+ <g filter="url(#filter1_d_1608_324)">
7
+ <path d="M14.7422 15.1569C14.7422 14.2267 15.4962 13.4727 16.4264 13.4727C17.3566 13.4727 18.1106 14.2267 18.1106 15.1569V23.5779C18.1106 24.5081 17.3566 25.2621 16.4264 25.2621C15.4962 25.2621 14.7422 24.5081 14.7422 23.5779V15.1569Z" fill="white" fill-opacity="0.9" shape-rendering="crispEdges"/>
8
+ </g>
9
+ <g filter="url(#filter2_d_1608_324)">
10
+ <path d="M21.0547 10.9459C21.0547 10.0158 21.8087 9.26172 22.7389 9.26172C23.6691 9.26172 24.4231 10.0158 24.4231 10.9459V23.5775C24.4231 24.5077 23.6691 25.2617 22.7389 25.2617C21.8087 25.2617 21.0547 24.5077 21.0547 23.5775V10.9459Z" fill="white" fill-opacity="0.7" shape-rendering="crispEdges"/>
11
+ </g>
12
+ <path d="M44 10.1149H49.0885V24.6909H52.1321V10.1149H57.2206V7.30912H44V10.1149Z" fill="white"/>
13
+ <path d="M60.6175 25C62.4484 25 64.0416 24.1678 64.5409 22.9551L64.7549 24.6909H67.2992V17.5575C67.2992 14.2999 65.3494 12.5878 62.1869 12.5878C59.0006 12.5878 56.9081 14.2523 56.9081 16.7966H59.3811C59.3811 15.5601 60.3322 14.8468 62.0442 14.8468C63.5184 14.8468 64.4696 15.4888 64.4696 17.0819V17.3435L60.9504 17.605C58.1684 17.819 56.599 19.1744 56.599 21.3382C56.599 23.5495 58.1208 25 60.6175 25ZM61.5686 22.8124C60.2609 22.8124 59.5475 22.2893 59.5475 21.2193C59.5475 20.2682 60.2371 19.6737 62.0442 19.5073L64.4934 19.317V19.9353C64.4934 21.7424 63.352 22.8124 61.5686 22.8124Z" fill="white"/>
14
+ <path d="M71.5995 10.5905C72.5506 10.5905 73.3353 9.80581 73.3353 8.83091C73.3353 7.85601 72.5506 7.09511 71.5995 7.09511C70.6008 7.09511 69.8161 7.85601 69.8161 8.83091C69.8161 9.80581 70.6008 10.5905 71.5995 10.5905ZM70.149 24.6909H73.0499V12.9445H70.149V24.6909Z" fill="white"/>
15
+ <path d="M78.9718 24.6909V7H76.0946V24.6909H78.9718Z" fill="white"/>
16
+ <path d="M83.9408 24.6909L85.3437 20.6724H91.8352L93.2381 24.6909H96.4481L90.1707 7.30912H87.0558L80.7784 24.6909H83.9408ZM88.2209 12.4927C88.3873 12.0172 88.53 11.4941 88.6013 11.1612C88.6489 11.5178 88.8153 12.041 88.958 12.4927L90.9554 18.1044H86.2473L88.2209 12.4927Z" fill="white"/>
17
+ <path d="M102.493 25C104.276 25 105.798 24.2153 106.511 22.86L106.701 24.6909H109.364V7H106.487V14.4425C105.75 13.2774 104.3 12.5878 102.659 12.5878C99.1161 12.5878 96.9761 15.2034 96.9761 18.8653C96.9761 22.5033 99.0923 25 102.493 25ZM103.135 22.3369C101.113 22.3369 99.877 20.8626 99.877 18.7701C99.877 16.6777 101.113 15.1797 103.135 15.1797C105.156 15.1797 106.464 16.6539 106.464 18.7701C106.464 20.8864 105.156 22.3369 103.135 22.3369Z" fill="white"/>
18
+ <path d="M115.289 24.6909V18.033C115.289 16.1308 116.406 15.2272 117.785 15.2272C119.164 15.2272 120.044 16.107 120.044 17.7477V24.6909H122.945V18.033C122.945 16.107 124.015 15.2034 125.418 15.2034C126.797 15.2034 127.701 16.0832 127.701 17.7715V24.6909H130.578V17.0106C130.578 14.2999 129.008 12.5878 126.155 12.5878C124.372 12.5878 122.993 13.4676 122.398 14.823C121.78 13.4676 120.543 12.5878 118.76 12.5878C117.072 12.5878 115.883 13.3487 115.289 14.3236L115.051 12.9445H112.388V24.6909H115.289Z" fill="white"/>
19
+ <path d="M134.876 10.5905C135.827 10.5905 136.612 9.80581 136.612 8.83091C136.612 7.85601 135.827 7.09511 134.876 7.09511C133.877 7.09511 133.093 7.85601 133.093 8.83091C133.093 9.80581 133.877 10.5905 134.876 10.5905ZM133.426 24.6909H136.327V12.9445H133.426V24.6909Z" fill="white"/>
20
+ <path d="M142.225 24.6909V18.3659C142.225 16.4637 143.318 15.2272 145.102 15.2272C146.6 15.2272 147.575 16.1783 147.575 18.1519V24.6909H150.476V17.4624C150.476 14.4188 148.954 12.5878 146.005 12.5878C144.412 12.5878 142.985 13.2774 142.248 14.4663L142.011 12.9445H139.324V24.6909H142.225Z" fill="white"/>
21
+ <defs>
22
+ <filter id="filter0_d_1608_324" x="7.42383" y="6.2373" width="5.36841" height="20.5264" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
23
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
24
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
25
+ <feOffset dy="0.5"/>
26
+ <feGaussianBlur stdDeviation="0.5"/>
27
+ <feComposite in2="hardAlpha" operator="out"/>
28
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
29
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1608_324"/>
30
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1608_324" result="shape"/>
31
+ </filter>
32
+ <filter id="filter1_d_1608_324" x="13.7422" y="12.9727" width="5.36841" height="13.7896" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
33
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
34
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
35
+ <feOffset dy="0.5"/>
36
+ <feGaussianBlur stdDeviation="0.5"/>
37
+ <feComposite in2="hardAlpha" operator="out"/>
38
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
39
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1608_324"/>
40
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1608_324" result="shape"/>
41
+ </filter>
42
+ <filter id="filter2_d_1608_324" x="20.0547" y="8.76172" width="5.36841" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
43
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
44
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
45
+ <feOffset dy="0.5"/>
46
+ <feGaussianBlur stdDeviation="0.5"/>
47
+ <feComposite in2="hardAlpha" operator="out"/>
48
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
49
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1608_324"/>
50
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1608_324" result="shape"/>
51
+ </filter>
52
+ </defs>
53
+ </svg>
@@ -0,0 +1,44 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8.42105C0 3.77023 3.77023 0 8.42105 0H23.5789C28.2298 0 32 3.77023 32 8.42105V23.5789C32 28.2298 28.2298 32 23.5789 32H8.42105C3.77023 32 0 28.2298 0 23.5789V8.42105Z" fill="#465FFF"/>
3
+ <g filter="url(#filter0_d_1884_16361)">
4
+ <path d="M8.42383 8.42152C8.42383 7.49135 9.17787 6.7373 10.108 6.7373C11.0382 6.7373 11.7922 7.49135 11.7922 8.42152V23.5794C11.7922 24.5096 11.0382 25.2636 10.108 25.2636C9.17787 25.2636 8.42383 24.5096 8.42383 23.5794V8.42152Z" fill="white"/>
5
+ </g>
6
+ <g filter="url(#filter1_d_1884_16361)">
7
+ <path d="M14.7422 15.1569C14.7422 14.2267 15.4962 13.4727 16.4264 13.4727C17.3566 13.4727 18.1106 14.2267 18.1106 15.1569V23.5779C18.1106 24.5081 17.3566 25.2621 16.4264 25.2621C15.4962 25.2621 14.7422 24.5081 14.7422 23.5779V15.1569Z" fill="white" fill-opacity="0.9" shape-rendering="crispEdges"/>
8
+ </g>
9
+ <g filter="url(#filter2_d_1884_16361)">
10
+ <path d="M21.0547 10.9459C21.0547 10.0158 21.8087 9.26172 22.7389 9.26172C23.6691 9.26172 24.4231 10.0158 24.4231 10.9459V23.5775C24.4231 24.5077 23.6691 25.2617 22.7389 25.2617C21.8087 25.2617 21.0547 24.5077 21.0547 23.5775V10.9459Z" fill="white" fill-opacity="0.7" shape-rendering="crispEdges"/>
11
+ </g>
12
+ <defs>
13
+ <filter id="filter0_d_1884_16361" x="7.42383" y="6.2373" width="5.36841" height="20.5264" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
14
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
15
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
16
+ <feOffset dy="0.5"/>
17
+ <feGaussianBlur stdDeviation="0.5"/>
18
+ <feComposite in2="hardAlpha" operator="out"/>
19
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
20
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1884_16361"/>
21
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1884_16361" result="shape"/>
22
+ </filter>
23
+ <filter id="filter1_d_1884_16361" x="13.7422" y="12.9727" width="5.36841" height="13.7891" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
24
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
25
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
26
+ <feOffset dy="0.5"/>
27
+ <feGaussianBlur stdDeviation="0.5"/>
28
+ <feComposite in2="hardAlpha" operator="out"/>
29
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
30
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1884_16361"/>
31
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1884_16361" result="shape"/>
32
+ </filter>
33
+ <filter id="filter2_d_1884_16361" x="20.0547" y="8.76172" width="5.36841" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
34
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
35
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
36
+ <feOffset dy="0.5"/>
37
+ <feGaussianBlur stdDeviation="0.5"/>
38
+ <feComposite in2="hardAlpha" operator="out"/>
39
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
40
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1884_16361"/>
41
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1884_16361" result="shape"/>
42
+ </filter>
43
+ </defs>
44
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg width="154" height="32" viewBox="0 0 154 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8.42105C0 3.77023 3.77023 0 8.42105 0H23.5789C28.2298 0 32 3.77023 32 8.42105V23.5789C32 28.2298 28.2298 32 23.5789 32H8.42105C3.77023 32 0 28.2298 0 23.5789V8.42105Z" fill="#465FFF"/>
3
+ <g filter="url(#filter0_d_1624_24907)">
4
+ <path d="M8.42383 8.42152C8.42383 7.49135 9.17787 6.7373 10.108 6.7373V6.7373C11.0382 6.7373 11.7922 7.49135 11.7922 8.42152V23.5794C11.7922 24.5096 11.0382 25.2636 10.108 25.2636V25.2636C9.17787 25.2636 8.42383 24.5096 8.42383 23.5794V8.42152Z" fill="white"/>
5
+ </g>
6
+ <g filter="url(#filter1_d_1624_24907)">
7
+ <path d="M14.7422 15.1569C14.7422 14.2267 15.4962 13.4727 16.4264 13.4727V13.4727C17.3566 13.4727 18.1106 14.2267 18.1106 15.1569V23.5779C18.1106 24.5081 17.3566 25.2621 16.4264 25.2621V25.2621C15.4962 25.2621 14.7422 24.5081 14.7422 23.5779V15.1569Z" fill="white" fill-opacity="0.9" shape-rendering="crispEdges"/>
8
+ </g>
9
+ <g filter="url(#filter2_d_1624_24907)">
10
+ <path d="M21.0547 10.9459C21.0547 10.0158 21.8087 9.26172 22.7389 9.26172V9.26172C23.6691 9.26172 24.4231 10.0158 24.4231 10.9459V23.5775C24.4231 24.5077 23.6691 25.2617 22.7389 25.2617V25.2617C21.8087 25.2617 21.0547 24.5077 21.0547 23.5775V10.9459Z" fill="white" fill-opacity="0.7" shape-rendering="crispEdges"/>
11
+ </g>
12
+ <path d="M44 10.1149H49.0885V24.6909H52.1321V10.1149H57.2206V7.30912H44V10.1149Z" fill="#101828"/>
13
+ <path d="M60.6175 25C62.4484 25 64.0416 24.1678 64.5409 22.9551L64.7549 24.6909H67.2992V17.5575C67.2992 14.2999 65.3494 12.5878 62.1869 12.5878C59.0006 12.5878 56.9081 14.2523 56.9081 16.7966H59.3811C59.3811 15.5601 60.3322 14.8468 62.0442 14.8468C63.5185 14.8468 64.4696 15.4888 64.4696 17.0819V17.3435L60.9504 17.605C58.1684 17.819 56.599 19.1744 56.599 21.3382C56.599 23.5495 58.1208 25 60.6175 25ZM61.5686 22.8124C60.2609 22.8124 59.5475 22.2893 59.5475 21.2193C59.5475 20.2682 60.2371 19.6737 62.0442 19.5073L64.4934 19.317V19.9353C64.4934 21.7424 63.352 22.8124 61.5686 22.8124Z" fill="#101828"/>
14
+ <path d="M71.5995 10.5905C72.5506 10.5905 73.3353 9.80581 73.3353 8.83091C73.3353 7.85601 72.5506 7.09511 71.5995 7.09511C70.6008 7.09511 69.8161 7.85601 69.8161 8.83091C69.8161 9.80581 70.6008 10.5905 71.5995 10.5905ZM70.149 24.6909H73.0499V12.9445H70.149V24.6909Z" fill="#101828"/>
15
+ <path d="M78.9718 24.6909V7H76.0946V24.6909H78.9718Z" fill="#101828"/>
16
+ <path d="M83.9408 24.6909L85.3437 20.6724H91.8352L93.2381 24.6909H96.4481L90.1707 7.30912H87.0558L80.7784 24.6909H83.9408ZM88.2209 12.4927C88.3873 12.0172 88.53 11.4941 88.6013 11.1612C88.6489 11.5178 88.8153 12.041 88.958 12.4927L90.9554 18.1044H86.2473L88.2209 12.4927Z" fill="#101828"/>
17
+ <path d="M102.493 25C104.276 25 105.798 24.2153 106.511 22.86L106.701 24.6909H109.364V7H106.487V14.4425C105.75 13.2774 104.3 12.5878 102.659 12.5878C99.1161 12.5878 96.9761 15.2034 96.9761 18.8653C96.9761 22.5033 99.0923 25 102.493 25ZM103.135 22.3369C101.113 22.3369 99.877 20.8626 99.877 18.7701C99.877 16.6777 101.113 15.1797 103.135 15.1797C105.156 15.1797 106.463 16.6539 106.463 18.7701C106.463 20.8864 105.156 22.3369 103.135 22.3369Z" fill="#101828"/>
18
+ <path d="M115.289 24.6909V18.033C115.289 16.1308 116.406 15.2272 117.785 15.2272C119.164 15.2272 120.044 16.107 120.044 17.7477V24.6909H122.945V18.033C122.945 16.107 124.015 15.2034 125.418 15.2034C126.797 15.2034 127.701 16.0832 127.701 17.7715V24.6909H130.578V17.0106C130.578 14.2999 129.008 12.5878 126.155 12.5878C124.372 12.5878 122.993 13.4676 122.398 14.823C121.78 13.4676 120.543 12.5878 118.76 12.5878C117.072 12.5878 115.883 13.3487 115.289 14.3236L115.051 12.9445H112.388V24.6909H115.289Z" fill="#101828"/>
19
+ <path d="M134.876 10.5905C135.827 10.5905 136.612 9.80581 136.612 8.83091C136.612 7.85601 135.827 7.09511 134.876 7.09511C133.877 7.09511 133.093 7.85601 133.093 8.83091C133.093 9.80581 133.877 10.5905 134.876 10.5905ZM133.426 24.6909H136.327V12.9445H133.426V24.6909Z" fill="#101828"/>
20
+ <path d="M142.225 24.6909V18.3659C142.225 16.4637 143.318 15.2272 145.102 15.2272C146.6 15.2272 147.575 16.1783 147.575 18.1519V24.6909H150.476V17.4624C150.476 14.4188 148.954 12.5878 146.005 12.5878C144.412 12.5878 142.985 13.2774 142.248 14.4663L142.011 12.9445H139.324V24.6909H142.225Z" fill="#101828"/>
21
+ <defs>
22
+ <filter id="filter0_d_1624_24907" x="7.42383" y="6.2373" width="5.36841" height="20.5263" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
23
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
24
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
25
+ <feOffset dy="0.5"/>
26
+ <feGaussianBlur stdDeviation="0.5"/>
27
+ <feComposite in2="hardAlpha" operator="out"/>
28
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
29
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1624_24907"/>
30
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1624_24907" result="shape"/>
31
+ </filter>
32
+ <filter id="filter1_d_1624_24907" x="13.7422" y="12.9727" width="5.36841" height="13.7895" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
33
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
34
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
35
+ <feOffset dy="0.5"/>
36
+ <feGaussianBlur stdDeviation="0.5"/>
37
+ <feComposite in2="hardAlpha" operator="out"/>
38
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
39
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1624_24907"/>
40
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1624_24907" result="shape"/>
41
+ </filter>
42
+ <filter id="filter2_d_1624_24907" x="20.0547" y="8.76172" width="5.36841" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
43
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
44
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
45
+ <feOffset dy="0.5"/>
46
+ <feGaussianBlur stdDeviation="0.5"/>
47
+ <feComposite in2="hardAlpha" operator="out"/>
48
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
49
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1624_24907"/>
50
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1624_24907" result="shape"/>
51
+ </filter>
52
+ </defs>
53
+ </svg>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,8 @@
1
+ <?php
2
+
3
+ use Illuminate\Foundation\Inspiring;
4
+ use Illuminate\Support\Facades\Artisan;
5
+
6
+ Artisan::command('inspire', function () {
7
+ $this->comment(Inspiring::quote());
8
+ })->purpose('Display an inspiring quote');
package/routes/web.php ADDED
@@ -0,0 +1,31 @@
1
+ <?php
2
+
3
+ use Illuminate\Support\Facades\Route;
4
+ use App\Http\Controllers\DashboardController;
5
+
6
+ Route::get('/form-example', function () {
7
+ return view('pages.example.easy-form-example', ['title' => 'E-commerce Dashboard']);
8
+ })->name('dashboard');
9
+
10
+ Route::get('/table-example', function () {
11
+ return view('pages.example.table-example', ['title' => 'E-commerce Dashboard']);
12
+ })->name('dashboard');
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+