boost Posted October 13, 2018 Share Posted October 13, 2018 Hi, I'm trying to make script to sync domains pricing and tld's with my register. try { $updatedDomainsCount = Capsule::table('tbldomainpricing') ->where('extension', $tld) ->update( [ 'extension' => $tld, 'autoreg' => 'domainstv', 'grace_period' => '15', 'idprotection' => $idp, 'grace_period_fee' => $rea_price, ] ); echo "Updated {$updatedDomainsCount} TLD: $tld</br>"; } catch (\Exception $e) { echo "I couldn't update domains tlds. {$e->getMessage()}"; } Is there any easy / best way to check if current extension is already in database and if not, add it? I try change "update" with "updateOrCreate" method but seems it's not implemented here. 0 Quote Link to comment Share on other sites More sharing options...
0 Daniyal Javani Posted July 27, 2021 Share Posted July 27, 2021 Try updateOrInsert , in Capsule we don't have "create" instead we have "insert" 0 Quote Link to comment Share on other sites More sharing options...
Question
boost
Hi,
I'm trying to make script to sync domains pricing and tld's with my register.
Is there any easy / best way to check if current extension is already in database and if not, add it?
I try change "update" with "updateOrCreate" method but seems it's not implemented here.
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.