word-salad/config/blog.php

39 lines
1.1 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Publishing Name
|--------------------------------------------------------------------------
|
| The name of the blog that will be displayed to the world.
|
*/
'publishing_name' => env('PUBLISHING_NAME', 'Word Salad'),
/*
|--------------------------------------------------------------------------
| Subheading
|--------------------------------------------------------------------------
|
| The one sentence abbreviation of the blog that will display below the name
|
*/
'subheading' => env('SUBHEAD', 'A blog with an as yet unclear direction.'),
/*
|--------------------------------------------------------------------------
| Contact Email
|--------------------------------------------------------------------------
|
| The public-facing email displayed in general contact and support areas of the blog
|
*/
'contact_email' => env('CONTACT_EMAIL', 'test@example.org'),
];