Boy132 54039e25a4
Make sure UTC is always used internally (#713)
* force app timezone to be UTC

* remove asDateTime overwrite

* add custom column to display dates in user timezone

* use `APP_TIMEZONE` as default timezone for new users

* revert accidental pinting
2024-11-15 20:41:33 +01:00

17 lines
265 B
PHP

<?php
return [
'name' => env('APP_NAME', 'Pelican'),
'favicon' => env('APP_FAVICON', '/pelican.ico'),
'version' => 'canary',
'timezone' => 'UTC',
'exceptions' => [
'report_all' => env('APP_REPORT_ALL_EXCEPTIONS', false),
],
];