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.
15 lines
415 B
PHP
15 lines
415 B
PHP
<?php
|
|
|
|
return [
|
|
'defaults' => [
|
|
'illustration' => false,
|
|
'text' => '<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptas repellendus modi ea praesentium totam, earum, accusamus pariatur cumque.</p>'
|
|
],
|
|
'preview' => function() {
|
|
// Use the home illustration if we have one
|
|
$illustration = page('home')->image('illustration.svg')->url();
|
|
|
|
return compact('illustration');
|
|
}
|
|
];
|