芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/app/Models/Admin/SetupKyc.php
"string", 'user_type' => "string", 'status' => "integer", 'last_edit_by' => "integer", 'fields' => "object", ]; public function scopeUserKyc($query) { return $query->where("user_type","USER")->active(); } public function scopeMerchantKyc($query) { return $query->where("user_type","MERCHANT")->active(); } public function scopeAgentKyc($query) { return $query->where("user_type","AGENT")->active(); } public function scopeActive($query) { $query->where("status",true); } }