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 | |
namespace App\Services; | |
use Illuminate\Support\Collection; | |
use JsonSchema\Validator; | |
use JsonSchema\Constraints\Constraint; | |
use OpenAI\Responses\Chat\CreateResponse; | |
use RuntimeException; |
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
useRequiredField( | |
'label', | |
__('You need to enter a label to save the post.', TEXTDOMAIN), | |
label && label.length > 0, | |
); |