芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Models/Package.php
'boolean', ]; /** * Check it the package is compatible with the current zCart version. * * @var bool */ public function isCompatible() { return version_compare($this->compatible, System::VERSION, '<='); } /** * Deactivate the package * * @var void */ public function deactivate() { $this->active = false; $this->save(); } }