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
solved How to fetch subcategories under a category Laravel blade