@php
// TODO: load from website configuration?
$routes = [
[
"label" => "About Us",
"location" => "/legal/about-us"
],
[
"label" => "Terms of Use",
"location" => "/legal/terms-of-use"
],
[
"label" => "Privacy Policy",
"location" => "/legal/privacy-policy"
],
[
"label" => "DMCA",
"location" => "/legal/dmca"
],
[
"label" => "Support",
"location" => "/support"
],
[
"label" => "Blog",
"location" => 'https://blog.gtoria.net'
],
]
@endphp
Graphictoria
@live
@foreach($routes as $index => $route)
@php
// HACK
$route = (object)$route;
@endphp
label == 'Blog' ? ' target="_blank"' : '' }}>{{ $route->label }}
@if($index != array_key_last($routes))
{{ ' | ' }}
@endif
@endforeach
@endlive
Copyright © {{ \Carbon\Carbon::now()->format('Y') }} Graphictoria. All rights reserved.
Graphictoria is not affiliated with, endorsed by, or sponsored by Roblox Corporation. The usage of this website signifies your acceptance of the Terms of Use and our Privacy Policy.