path = '/tournaments'.$tournament->id; $url->lastmod = $tournament->updated_at ? $tournament->updated_at : ($tournament->created_at ? $tournament->created_at : now()); $url->changefreq = $tournament->locked ? 'never' : 'daily'; $url->priority = $tournament->locked ? 0.5 : 1.0; $urls[] = $url; } return response()->view('sitemap', [ 'urls' => $urls, ])->header('Content-Type', 'text/xml'); } }