How to check find method executed successfully in laravel

Created at 30-May-2021 , By samar

How to check find method executed successfully in laravel

In this tutorial, we will try to find the solution to "How to check find method executed successfully in laravel" through programming.

Laravel find method returns the model/models that have a primary key matching the given key or array of keys. We can check that the find method executed successfully or not in laravel. Because it returns the NULL value if the record does not exist with the specified key in the table, else it returns the eloquent collections.
  • Laravel find method on eloquent collection with if statement

    //Laravel find method with id
    $user = App\Models\User::find(1);
    if($user){
        echo "User exists";
    }
    dd($user);
    
    //Find method with an array of ids
    $userIds = [1,5,10];
    $users = App\Models\User::find($userIds);
    if(count($users)){
        echo "Users exists";
    }
    dd($users);
    

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.