Файловый менеджер - Редактировать - /home/c7lekhnath/silverray.com.au/oldsite/storage/framework/views/a7fd4de2b3d9269128ec821cc0c892edc9587f8f.php
Назад
<?php $__env->startSection('content'); ?> <div class="card"> <div class="card-header d-flex justify-content-between"> <p>Enter Database Details</p> <div> <a class="btn btn-outline-primary" href="<?php echo e(route('setup.requirements')); ?>">« Back</a> </div> </div> <form id="database_migrate_form" autocomplete="off"> <div class="card-body"> <div class="mb-3"> <label>Host <span class="text-danger">*</span></label> <input type="text" name="host" id="host" class="form-control" value="<?php echo e(old('host') ?: '127.0.0.1'); ?>" placeholder="Enter Database Host"> </div> <div class="mb-3"> <label>Port <span class="text-danger">*</span></label> <input type="text" name="port" id="port" class="form-control" value="<?php echo e(old('port') ?: '3306'); ?>" placeholder="Enter Database Port. Default Is 3306"> </div> <div class="mb-3"> <label>Database Name <span class="text-danger">*</span></label> <input type="text" name="database" id="database" value="<?php echo e(old('database')); ?>" class="form-control" placeholder="Enter Database Name Here"> <div class="my-3 d-none" id="reset_database_switcher"> <input class="form-check-input" type="checkbox" role="switch" id="reset_database" name="reset_database" <?php echo e(old('reset_database') ? 'checked' : ''); ?>> <label for="reset_database" class="text-danger"><b><small>Database not empty. Are you sure want to clean this database?</small></b> </label> </div> </div> <div class="mb-3"> <label>Database User <span class="text-danger">*</span></label> <input autocomplete="off" type="text" name="user" id="user" value="<?php echo e(old('user')); ?>" class="form-control" placeholder="Enter Database User Here"> </div> <div class="mb-3"> <label>Database User Password <?php if(isset($isLocalHost) && !$isLocalHost): ?> <span class="text-danger">*</span> <?php endif; ?> </label> <input autocomplete="new-password" type="password" name="password" id="password" value="<?php echo e(old('password')); ?>" class="form-control" placeholder="Enter Database Password Here"> </div> <div class="mb-3"> <b class="text-success">If you prefer a fresh installation without any dummy data, simply toggle the "Fresh Install" switch.</b> </div> </div> <div class="card-footer d-flex justify-content-between "> <input class="form-check-input" type="checkbox" role="switch" id="fresh_install" name="fresh_install" <?php echo e(old('fresh_install') ? 'checked' : ''); ?>> <button type="submit" id="submit_btn" class="btn btn-lg btn-primary">Setup Database</button> </div> </form> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('styles'); ?> <link href="<?php echo e(asset('//cdn.jsdelivr.net/npm/bootstrap5-toggle@5.0.4/css/bootstrap5-toggle.min.css')); ?>" rel="stylesheet"> <style> .form-switch { padding-left: 0px !important; } .form-check { padding-left: 0px !important; } .toggle.btn.btn-lg{ width: 212px; } </style> <?php $__env->stopPush(); ?> <?php $__env->startPush('scripts'); ?> <script src="<?php echo e(asset('//cdn.jsdelivr.net/npm/bootstrap5-toggle@5.0.4/js/bootstrap5-toggle.jquery.min.js')); ?>"></script> <script> "use strict"; $('#reset_database').bootstrapToggle({ onlabel: 'Yes', offlabel: 'No', onstyle: 'danger', offstyle: 'secondary', size: 'sm' }); $('#fresh_install').bootstrapToggle({ onlabel: 'Fresh Install', offlabel: 'With Dummy Data', onstyle: 'success', offstyle: 'warning', size: 'lg' }); </script> <script> $(document).ready(function() { $(document).on('submit', '#database_migrate_form', async function(e) { e.preventDefault(); let submit_btn, host, port, database, username, password, fresh_install, reset_database; submit_btn = $('#submit_btn'); host = $('#host').val(); port = $('#port').val(); database = $('#database').val(); username = $('#user').val(); password = $('#password').val(); fresh_install = $('#fresh_install'); reset_database = $('#reset_database'); if ($.trim(host) === '') { toastr.warning("Host is required"); } else if ($.trim(port) === '') { toastr.warning("Port is required"); } else if ($.trim(database) === '') { toastr.warning("Database Name is required"); } else if ($.trim(username) === '') { toastr.warning("Username is required"); } else { submit_btn.html( 'Migrating... <span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>' ).prop('disabled', true); try { let data = { host: host, port: port, database: database, user: username, password: password, }; if (fresh_install.is(':checked')) { data.fresh_install = fresh_install.val(); } if (reset_database.is(':checked')) { data.reset_database = reset_database.val(); } const res = await makeAjaxRequest(data, "<?php echo e(route('setup.database.submit')); ?>"); $('#reset_database').bootstrapToggle('off'); $('#reset_database_switcher').addClass('d-none'); if (res.success) { toastr.success(res.message); submit_btn.addClass('btn-success').html('Redirecting...'); window.location.href = "<?php echo e(route('setup.account')); ?>"; } else if (res.create_database) { toastr.error(res.message); submit_btn.html('Setup Database').prop('disabled', false); } else if (res.reset_database) { $('#reset_database_switcher').removeClass('d-none'); toastr.error(res.message); submit_btn.html('Setup Database').prop('disabled', false); } else { submit_btn.html('Setup Database').prop('disabled', false); toastr.error(res.message); } } catch (error) { submit_btn.html('Setup Database').prop('disabled', false); $.each(error.errors, function(index, value) { toastr.error(value); }); } } }); }); </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('setup.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH D:\laragon\www\topland\script_content\main_files\installer\views/setup/database.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.20 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка