mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- generate .env file to configure instance's environment - add phpdotenv dependency to verify .env file - add AppSeeder to call all required seeds at once - add env and superadmin form views using form helpers closes #2
10 lines
264 B
PHP
10 lines
264 B
PHP
<?= $this->extend('install/_layout') ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="px-4 py-2 mb-4 font-semibold text-red-900 bg-red-200 border border-red-700">
|
|
<?= lang('Install.messages.error', ['message' => $error]) ?>
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|