芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/app/Models/Newsletter.php
$this->id, 'name' => $this->name, 'email' => $this->email, 'status' => $this->status, ]; return json_encode($data); } public function scopeSearch($query,$text) { $query->where(function($q) use ($text) { $q->where("email","like","%".$text."%"); })->orWhere("name","like","%".$text."%"); } }