<?php
/**
* Holds the status controller.
* @package Sakura
*/
namespace Sakura\Controllers;
* The status page and related stuff.
* @author Julian van de Groep <me@flash.moe>
class StatusController extends Controller
{
* Renders the base status page.
* @return string
public function index(): string
return view('status/index');
}