Level 51
From documentation
http://php.net/manual/en/function.isset.php
isset — Determine if a variable is set and is not NULL
so i would use ! isset()
I'm trying to learn what is a best one-size-fits-all way in Laravel to detect if something is a)set to null and/or b) not set.
There's isset(), is_null(), and others. But I'm looking to see how other developers do it.
Please or to participate in this conversation.