trs_matrimony/resources/views/installation/step4.blade.php
2024-08-22 09:31:12 +05:30

37 lines
1.5 KiB
PHP

@extends('admin.layouts.blank')
@section('content')
<div class="container pt-5">
<div class="row">
<div class="col-xl-6 mx-auto">
<div class="card">
<div class="card-body">
<div class="mar-ver pad-btm text-center">
<h1 class="h3">Import SQL</h1>
</div>
<p class="text-muted font-13 text-center">
<strong>Your database is successfully connected</strong>. All you need to do now is
<strong>hit the 'Install' button</strong>.
The auto installer will run a sql file, will do all the tiresome works and set up your application automatically.
</p>
<div class="text-center mar-top pad-top">
<a href="{{ route('import_sql') }}" class="btn btn-primary" onclick="showLoder()">Import SQL</a>
<div id="loader" style="margin-top: 20px; display: none;">
<img loading="lazy" src="{{ asset('loader.gif') }}" alt="" width="20">
&nbsp; Importing database ....
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@section('scripts')
<script type="text/javascript">
function showLoder() {
$('#loader').fadeIn();
}
</script>
@endsection