[Solved] How to fetch subcategories under a category Laravel blade

[ad_1]

Finally I got the answer .. I added the stuff in my blade.

@foreach(Subcategory::where('category_id','=',$cat->id)->get() as $subcat)
    <input type="checkbox" class="checkbox" value="{{ $cat->id }}">
    {{ $subcat->subcategory }}
    <br>
@endforeach

[ad_2]

solved How to fetch subcategories under a category Laravel blade