How to create a Eloquent model instance from a raw Object?
问题 I need to make a raw database query using Laravel: $results = DB::select("SELECT * FROM members INNER JOIN (several other tables) WHERE (horribly complicated thing) LIMIT 1"); I get back a plain PHP StdClass Object with fields for the properties on the members table. I'd like to convert that to a Member (an Eloquent model instance), which looks like this: use Illuminate\Database\Eloquent\Model; class Member extends Model { } I'm not sure how to do it since a Member doesn't have any fields set