mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-14 17:56:10 +01:00
20 lines
334 B
PHP
20 lines
334 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'pages' => [
|
|
[
|
|
'uid' => 1,
|
|
'pid' => 0,
|
|
'title' => 'Page 1',
|
|
'slug' => '',
|
|
],
|
|
[
|
|
'uid' => 2,
|
|
'pid' => 1,
|
|
'title' => 'Storage',
|
|
'slug' => '/storage',
|
|
],
|
|
],
|
|
];
|