Undefined property: Illuminate\Database\Eloquent\Builder::$winner_id
问题 I have a draw system on my site. There are 2 draws in the database now, but for some reason, only the last created draw is displayed on the draw page. My code is: public function raffling() { parent::setTitle('Items raffling | '); $green_ticket = \DB::table('users')->where('id', $this->user->id)->value('green_ticket'); $kolvo=\DB::table('giveaway_items')->where('status',0)->orderBy('id', 'desc')->count(); $giveaway = Giveaway::orderBy('id', 'desc')->first(); $giveaway_users = \DB::table(