14 lines
345 B
PHP
14 lines
345 B
PHP
<?php
|
|
|
|
return [
|
|
'404' => [
|
|
'title' => 'Page Not Found',
|
|
'message' => 'Sorry, the page you are looking for could not be found.',
|
|
'return_home' => 'Back to Home',
|
|
],
|
|
'500' => [
|
|
'title' => 'Server Error',
|
|
'message' => 'Whoops, something went wrong on our end. Please try again later.',
|
|
],
|
|
];
|