A collection containing all the configured sites as Statamic\Sites\Site
objects which you can loop over using a tag pair.
// config/statamic/sites.php 'sites' => [ 'english' => [ 'name' => 'English Site', 'locale' => 'en_US', 'url' => 'http://mysite.com/', 'direction' => 'ltr', 'attributes' => [ 'foo' => 'bar', ] ], 'french' => [ 'name' => 'French Site', 'locale' => 'en_FR', 'url' => 'http://mysite.com.fr/', 'direction' => 'ltr', 'attributes' => [ 'foo' => 'baz', ] ]]
{{ sites }} {{ handle }} {{ name }} {{ locale }} {{ short_locale }} {{ url }} {{ direction }} {{ attributes }} {{ foo }} {{ /attributes }} {{ /sites }}
@foreach ($sites as $site) {{ $site->handle }} {{ $site->name }} {{ $site->locale }} {{ $site->short_locale }} {{ $site->url }} {{ $site->permalink }} {{ $site->direction }} {{ $site->attributes['foo'] }}@endforeach
englishEnglish Siteen_USenhttp://mysite.com/ltrbar frenchFrench Sitefr_FRfrhttp://mysite.com.fr/ltrbaz