diff --git a/resources/views/segments/menu/HomayonMenu/HomayonMenu.blade.php b/resources/views/segments/menu/HomayonMenu/HomayonMenu.blade.php
index 67c2154..37f25e1 100644
--- a/resources/views/segments/menu/HomayonMenu/HomayonMenu.blade.php
+++ b/resources/views/segments/menu/HomayonMenu/HomayonMenu.blade.php
@@ -103,6 +103,17 @@
{{$itm->name}}
+ @if($itm->children()->where('hide',false)->count() > 0)
+
+ @foreach($itm->children()->where('hide',false)->get() as $subItem)
+ -
+
+ {{$subItem->name}}
+
+
+ @endforeach
+
+ @endif
@endforeach
diff --git a/resources/views/segments/menu/HomayonMenu/HomayonMenu.scss b/resources/views/segments/menu/HomayonMenu/HomayonMenu.scss
index a91cc64..339652d 100644
--- a/resources/views/segments/menu/HomayonMenu/HomayonMenu.scss
+++ b/resources/views/segments/menu/HomayonMenu/HomayonMenu.scss
@@ -199,6 +199,37 @@
}
}
+ .sub-menu-item{
+
+ li{
+ position: relative;
+ .sub-sub-item{
+ width: 200px;
+ display: none;
+ }
+
+ &:hover{
+ .sub-sub-item{
+ padding: 0;
+ border-radius: 7px;
+ position: absolute;
+ display: block;
+ inset-inline-start: 90%;
+ top: 0;
+ height: auto;
+ li{
+ border-radius: 7px;
+ margin: 0;
+ a{
+ border-radius: 7px !important;
+ }
+ }
+
+ }
+ }
+ }
+ }
+
/*-875px width*/
@media (max-width: 875px) {
ul {