Answers for "check string empty or null in laravel blade"

PHP
1

laravel 8 check if null or empty

if(is_null($value) || empty($value)){dd('Is null or empty');}else{dd('Is NOT NULL OR EMPTY');}
Posted by: Guest on October-28-2021
0

check null if string laravel

$query->whereRAW("IFNULL(COLUMN_NAME,'') = '' ")
Posted by: Guest on June-25-2021

Code answers related to "check string empty or null in laravel blade"

Browse Popular Code Answers by Language