This should work:
return function ($page) {
if ('your condition') {
echo page('error')->render();
exit();
} else {
return [
//...
];
}
};
This should work:
return function ($page) {
if ('your condition') {
echo page('error')->render();
exit();
} else {
return [
//...
];
}
};