step4.blade.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. @extends('backend.layouts.blank')
  2. @section('content')
  3. <div class="container pt-5">
  4. <div class="row">
  5. <div class="col-xl-6 mx-auto">
  6. <div class="card">
  7. <div class="card-body">
  8. <div class="mar-ver pad-btm text-center">
  9. <h1 class="h3">Import SQL</h1>
  10. </div>
  11. <p class="text-muted font-13 text-center">
  12. <strong>Your database is successfully connected</strong>. All you need to do now is
  13. <strong>hit the 'Install' button</strong>.
  14. The auto installer will run a sql file, will do all the tiresome works and set up your application automatically.
  15. </p>
  16. <div class="text-center mar-top pad-top">
  17. <a href="{{ route('import_sql') }}" class="btn btn-primary" onclick="showLoder()">Import SQL</a>
  18. <div id="loader" style="margin-top: 20px; display: none;">
  19. <img loading="lazy" src="{{ asset('loader.gif') }}" alt="" width="20">
  20. &nbsp; Importing database ....
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. @endsection
  29. @section('scripts')
  30. <script type="text/javascript">
  31. function showLoder() {
  32. $('#loader').fadeIn();
  33. }
  34. </script>
  35. @endsection