芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Models/ConfigPaypalExpress.php
'boolean', ]; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'shop_id', 'account', 'client_id', 'secret', 'sandbox', ]; /** * Setters. */ public function setAccountAttribute($value) { $this->attributes['account'] = trim($value); } public function setClientIdAttribute($value) { $this->attributes['client_id'] = trim($value); } public function setSecretAttribute($value) { $this->attributes['secret'] = trim($value); } public function setSandboxAttribute($value) { $this->attributes['sandbox'] = (bool) $value; } }