Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/voku/.././phar-io/.././iyzico/.././iyzico/../vlucas/phpdotenv/../../vlucas/../tijsverkoyen/../markbaker/../guzzlehttp/../mockery/../maennchen/././../../../.././school.picotech.app/public_html/resources/views/layouts/../install
الملفات الموجودة في هذا الـ Path:
.
..
finalizing_setup.blade.php
index.blade.php
install.blade.php
step0.blade.php
step1.blade.php
step2.blade.php
step3.blade.php
step4.blade.php
success.blade.php

مشاهدة ملف: install.blade.php

@extends('install.index')
   
@section('content')
<?php if(isset($error)) { ?>
  <div class="row ins-seven">
    <div class="col-md-8 col-md-offset-2">
      <div class="alert alert-danger">
        <strong>{{ $error }}</strong>
      </div>
    </div>
  </div>
<?php } ?>
<div class="row ins-two">
  <div class="col-md-8 col-md-offset-2">
    <div class="card">
      <div class="card-body">
        <div class="panel panel-default ins-three" data-collapsed="0">
          <!-- panel body -->
          <div class="panel-body ins-four">
            <p class="ins-four">
              <strong>{{ phrase('Your database is successfully connected') }}</strong>. {{ phrase('All you need to do now is') }}
              <strong>{{ phrase("hit the 'Install' button") }}</strong>.
              {{ phrase('The auto installer will run a sql file, will do all the tiresome works and set up your application automatically.') }}'
            </p>
            <br>
            <div class="row">
              <div class="col-md-12">
                <button type="button" id="install_button" class="btn btn-info">
                    <i class="entypo-check"></i> &nbsp; {{ phrase('Confirm Install') }}
                </button>
                <div id="loader" class="ins-seven">
                  &nbsp; {{ phrase('Importing database....') }}'
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>

<script type="text/javascript">

  "use strict";

  $(document).ready(function() {
    $('#loader').hide();
    $('#install_button').click(function() {
      $('#loader').fadeIn();
      setTimeout(
      function()
      {
        window.location.href = "{{ route('confirm_install') }}";
      }, 5000);
    });
  });
</script>
@endsection