Compare commits

...

3 Commits

@ -430,7 +430,7 @@ function showCatNested($cats, $parent = null)
{
$ret = "";
foreach ($cats as $cat) {
if ($cat->parent_id == $parent) {
if ($cat->parent_id == $parent & !$cat->hide) {
$ret .= "<li>";
$ret .= "<a href='" . $cat->webUrl() . "'>";
$ret .= $cat->name . '</a>';

@ -23,7 +23,7 @@ return new class extends Migration
$table->unsignedInteger('parent_id')->nullable()->default(null)->index();
$table->json('theme')->nullable();
$table->text('canonical')->nullable();
$table->boolean('hide')->default(true)->comment('hide in menu as sub group');
$table->boolean('hide')->default(false)->comment('hide in menu as sub group');
$table->softDeletes();
$table->timestamps();
});

@ -25,7 +25,7 @@ return new class extends Migration
$table->unsignedInteger('parent_id')->nullable()->default(null)->index();
$table->json('theme')->nullable();
$table->text('canonical')->nullable();
$table->boolean('hide')->default(true)->comment('hide in menu as sub category');
$table->boolean('hide')->default(false)->comment('hide in menu as sub category');
$table->softDeletes();
$table->timestamps();
});

@ -58,7 +58,7 @@
<label for="table">
{{__('Description Table')}}
</label>
<textarea name="table" class="ckeditorx @error('description') is-invalid @enderror"
<textarea name="table" class="ckeditorx @error('table') is-invalid @enderror"
placeholder="{{__('Description Table')}}"
id="table"
rows="8">{{old('table',$item->table??null)}}</textarea>

@ -103,6 +103,17 @@
<a href="{{$itm->webUrl()}}">
{{$itm->name}}
</a>
@if($itm->children()->where('hide',false)->count() > 0)
<ul class="sub-sub-item">
@foreach($itm->children()->where('hide',false)->get() as $subItem)
<li>
<a href="{{$subItem->webUrl()}}">
{{$subItem->name}}
</a>
</li>
@endforeach
</ul>
@endif
</li>
@endforeach
</ul>

@ -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 {

@ -19,7 +19,7 @@
</h4>
<div class="side-data side-list">
<ul class="ps-3">
{!! showCatNested(\App\Models\Category::all(['id','name','parent_id','slug'])) !!}
{!! showCatNested(\App\Models\Category::where('hide',0) ->get(['id','name','parent_id','slug'])) !!}
</ul>
</div>
</div>

Loading…
Cancel
Save