@extends('website.layout.app') @section('content')
@foreach($checklistSubCategory as $key=>$checklistSub)

@php $checklists= \App\Models\Checklist::where('category_id',$checklistCategory->id) ->where('sub_category_id',$checklistSub->id) ->where('status',1) ->get(); @endphp
@foreach($checklists as $checklist) @endforeach
@endforeach
@endsection