I am trying to write a changelog using Laravel and have been asked to pull data from a MySQL database into an array; check in the array if an account ID exists based on values read in from JSON files.
If not present, I need to create it and add the data to the array.
The code I have at the moment adds entries to the database, but it does not do any sort of checking, my code is as follows:
if (isset($cfi->awsAccountId)) {
$aid = new Account;
$aid->aws_account_id = $cfi->awsAccountId;
$aid->save();
}