function getRecordsByMetaKey(string $modelClass, string $metaKey, string $metaValue)
{
// Get all meta records with the given key , value and Model
$metaRecords = MetaBoxModel::query()
->where('meta_key', $metaKey)
->where('reference_type', $modelClass)
->whereJsonContains('meta_value', $metaValue)
->get();
if ($metaRecords->isEmpty()) {
return collect([]);
}
$referenceIds = $metaRecords->pluck('reference_id');
return $modelClass::query()
->whereIn('id', $referenceIds)
->with(['slugable'])
->get();
}
getRecordsByMetaKey(Page::class, 'meta_key', 'meta_value');