getHost(); $domain = Domain::where('hostname', $host)->first(); $page = BioPage::where('slug', $slug) ->where('domain_id', $domain?->id) ->where('is_published', true) ->with('blocks') ->firstOrFail(); return view('bio.show', compact('page')); } }