post = Post::raw(function($collection) { return $collection->aggregate([ ['$match' => ['featured' => 'on']], ['$sample' => ['size' => 1]] ]); })->first(); } public function render() { if ($this->post == null) { return <<<'HTML'
HTML; } return view('livewire.post-feature'); } }