Last active
April 4, 2022 13:51
-
-
Save guimossibento/16af9c5e1ae3c05c8f2b3110027a99f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| DB::table('registry_options') | |
| ->where(fn(Builder $query) => $query | |
| ->where('app_id', AppEnum::PLATAFOOR) | |
| ->orwhere('app_id', request()->appId())) | |
| ->where('code', $value) | |
| ->dd(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment