parent
7e4d439da9
commit
e87c52d30f
|
|
@ -11,7 +11,7 @@ APP_DEBUG = false
|
||||||
APP_ENV = production
|
APP_ENV = production
|
||||||
|
|
||||||
# Database Configuration
|
# Database Configuration
|
||||||
DB_CONNECTION = dummy
|
DB_CONNECTION = dummy
|
||||||
DB_HOST = localhost
|
DB_HOST = localhost
|
||||||
DB_PORT = 3306
|
DB_PORT = 3306
|
||||||
DB_DATABASE = blessingskin
|
DB_DATABASE = blessingskin
|
||||||
|
|
|
||||||
|
|
@ -23,38 +23,38 @@
|
||||||
<tr class="form-field form-required">
|
<tr class="form-field form-required">
|
||||||
<th scope="row"><label for="host">@lang('setup.wizard.database.host')</label></th>
|
<th scope="row"><label for="host">@lang('setup.wizard.database.host')</label></th>
|
||||||
<td>
|
<td>
|
||||||
<input name="host" type="text" id="host" size="25" value="127.0.0.1" />
|
<input name="host" type="text" id="host" size="25" value="{{ env('DB_HOST') }}" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="form-field form-required">
|
<tr class="form-field form-required">
|
||||||
<th scope="row"><label for="port">@lang('setup.wizard.database.port')</label></th>
|
<th scope="row"><label for="port">@lang('setup.wizard.database.port')</label></th>
|
||||||
<td>
|
<td>
|
||||||
<input name="port" type="text" id="port" size="25" value="3306" />
|
<input name="port" type="text" id="port" size="25" value="{{ env('DB_PORT') }}" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="form-field form-required">
|
<tr class="form-field form-required">
|
||||||
<th scope="row"><label for="username">@lang('setup.wizard.database.username')</label></th>
|
<th scope="row"><label for="username">@lang('setup.wizard.database.username')</label></th>
|
||||||
<td>
|
<td>
|
||||||
<input name="username" type="text" id="username" size="25" value="" />
|
<input name="username" type="text" id="username" size="25" value="{{ env('DB_USERNAME') }}" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="form-field form-required">
|
<tr class="form-field form-required">
|
||||||
<th scope="row"><label for="password">@lang('setup.wizard.database.password')</label></th>
|
<th scope="row"><label for="password">@lang('setup.wizard.database.password')</label></th>
|
||||||
<td>
|
<td>
|
||||||
<input type="password" name="password" id="password" class="regular-text" autocomplete="off" />
|
<input type="password" name="password" id="password" class="regular-text" value="{{ env('DB_PASSWORD') }}" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="form-field form-required">
|
<tr class="form-field form-required">
|
||||||
<th scope="row"><label for="db">@lang('setup.wizard.database.db')</label></th>
|
<th scope="row"><label for="db">@lang('setup.wizard.database.db')</label></th>
|
||||||
<td>
|
<td>
|
||||||
<input name="db" type="text" id="db" size="25" value="" />
|
<input name="db" type="text" id="db" size="25" value="{{ env('DB_DATABASE') }}" />
|
||||||
<p>@lang('setup.wizard.database.db-notice')</p>
|
<p>@lang('setup.wizard.database.db-notice')</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row"><label for="prefix">@lang('setup.wizard.database.prefix')</label></th>
|
<th scope="row"><label for="prefix">@lang('setup.wizard.database.prefix')</label></th>
|
||||||
<td>
|
<td>
|
||||||
<input name="prefix" type="text" id="prefix" size="25" value="" />
|
<input name="prefix" type="text" id="prefix" size="25" value="{{ env('DB_PREFIX') }}" />
|
||||||
<p>@lang('setup.wizard.database.prefix-notice')</p>
|
<p>@lang('setup.wizard.database.prefix-notice')</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user