Skip to content

Tag: php

“start_batch was called incorrectly” on gRPC unary call

I make an unary call from PHP code like that: Sometimes I get the LogicException with message “start_batch was called incorrectly”. Any thoughts how to deal with that exception and what is the root cause? Answer After some investigation I found out that the problem occurs because of reusing the in…

Laravel create if statement when img missing in array in blade

How to create if statement in laravel blade when my email with image missing in array ? When email is not defined in array, laravel show error. My goal is when email with image are defined in array show the image, if email isnt defined show custom jpg. my array blade Answer You could use the null coalesce ope…