You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
531 B
PHP
18 lines
531 B
PHP
<?php
|
|
|
|
return [
|
|
'defaults' => [
|
|
'illustration' => false,
|
|
'title' => 'Lorem ipsum dolor',
|
|
'coloredTitle' => true,
|
|
'text' => '<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptas repellendus modi ea praesentium totam, earum, accusamus pariatur cumque.</p>'
|
|
],
|
|
'preview' => function() {
|
|
// Use a random service illustration if we have one
|
|
$page = page('services');
|
|
$illustration = ($page)? $page->images()->shuffle()->first()->url() : false;
|
|
|
|
return compact('illustration');
|
|
}
|
|
];
|