hasMany('App\Models\Post','post_cat_id','id')->where('status','active'); } public static function getBlogByCategory($slug){ return PostCategory::with('post')->where('slug',$slug)->first(); } }