C4
C4
Is this available? My Database is constantly getting updated and I'd like a way to communicate with it outside.
``` $currentDatetime = Carbon::now(); Error Query: $db->rawQuery("SELECT * FROM `am_store` WHERE `expires` < ".$currentDatetime->toDateTimeString()); Temporary Fix Query: $db->rawQuery("SELECT * FROM `am_store` WHERE `expires` < "."'".$currentDatetime->toDateTimeString()."'"); ``` php verison 8.2.10 DEPRECATED...
remove hardcoded config entries in the service provider, so that events listed in config are automatically listening. Tested using PHP8.4 & Laravel 10.48.29