app/View/Components/SeriesNextPostComponent.php
use App\Models\Post;use Illuminate\View\Component; class SeriesNextPostComponent extends Component{ public function render() { $nextPost = Post::query() ->where('series_slug', $this->post->series_slug) ->where('id', '>', $this->post->id) ->orderBy('id') ->first(); return view('components.series-next-post-component', compact('nextPost')); }}