Skip to content

PHP code snippet – How to check duplicate records in laravel?

<?php
$email = "john@example.com";
$userExists = Users::where('email', '=', $email)->first();
if ($userExists === null) {
   // User Not Found Your Stuffs Goes Here..
}
?>
See also  How to read a csv file in Python?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.