Skip to content

Instantly share code, notes, and snippets.

@greatislander
Created October 11, 2022 15:32
Show Gist options
  • Save greatislander/375a322eab2302f72c6273d749fdf72e to your computer and use it in GitHub Desktop.
Save greatislander/375a322eab2302f72c6273d749fdf72e to your computer and use it in GitHub Desktop.
<?php
Project::seekingGroups([
['App\Models\DisabilityType' => 1],
['App\Models\GenderIdentity' => 3],
]);
foreach($seekingGroups as $criteriable => $id) {
Criterion::where([
'criteriable_type' => $criteriable,
'criteriable_id' => $id
])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment