Initial Commit
This commit is contained in:
12
resources/views/components/sidebar-categories.blade.php
Normal file
12
resources/views/components/sidebar-categories.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<div>
|
||||
<div class="widget">
|
||||
<h5 class="widget-title"><span>Kategorien</span></h5>
|
||||
<ul class="list-unstyled widget-list">
|
||||
@foreach (sidebar_categories() as $item)
|
||||
<li><a href="{{ route('category_posts', $item->slug) }}" class="d-flex">
|
||||
{{ $item->name }} <small class="ml-auto">({{ $item->posts->count() }})</small></a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user