芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Models/State.php
'boolean', ]; /** * Get the country of the state. */ public function country() { return $this->belongsTo(Country::class); } /** * Check if the state is in active business area * * @return bool */ public function getInActiveBusinessAreaAttribute() { return config('system_settings.worldwide_business_area') ? true : $this->active; } }