BROOKO icon
BROOKO UK NETWORK
Where code meets creativity & adventure
File viewer

index.php

Type
php
Size
321 B
Modified
15 May
index.php 321 B
<?php
// TruTrak is now map-first.
// Live Devices has been merged into Management → Dashboard.
require_once __DIR__ . '/../../bootstrap.php';
requirePermission('trutrak.view');

$qs = $_SERVER['QUERY_STRING'] ?? '';
$to = app_url('trutrak/map') . ($qs ? ('?' . $qs) : '');
header('Location: ' . $to, true, 302);
exit;