66 lines
2.3 KiB
PHP
66 lines
2.3 KiB
PHP
@extends('layouts.install', ['no_header' => 1])
|
|
@section('title', 'Welcome - POS Installation')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
<h3 class="text-center">{{ config('app.name', 'POS') }} Installation <small>Step 1 of 3</small></h3>
|
|
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<hr/>
|
|
@include('install.partials.nav', ['active' => 'install'])
|
|
|
|
<div class="box box-primary active">
|
|
<!-- /.box-header -->
|
|
<div class="box-body">
|
|
<h3 class="text-success">
|
|
Welcome to POS Installation!
|
|
</h3>
|
|
<p><strong class="text-danger">[IMPORTANT]</strong> Before you start installing make sure you have following information ready with you:</p>
|
|
|
|
<ol>
|
|
<li>
|
|
<b>Step-by-Step document</b> - <a href="https://ultimatefosters.com/docs/ultimatepos/getting-started/installing-ultimatepos/" target="_blank">Documentation</a>
|
|
</li>
|
|
<li>
|
|
<b>Application Name</b> - Something short & Meaningful.
|
|
</li>
|
|
<li>
|
|
<b>Database informations:</b>
|
|
<ul>
|
|
<li>Username</li>
|
|
<li>Password</li>
|
|
<li>Database Name</li>
|
|
<li>Database Host</li>
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
<b>Mail Configuration</b> - SMTP details (optional)
|
|
</li>
|
|
<li>
|
|
<b>Envato or Codecanyon Details:</b>
|
|
<ul>
|
|
<li><b>Envato purchase code.</b> (<a href="https://help.market.envato.com/hc/en-us/articles/202822600-Where-Is-My-Purchase-Code-" target="_blank">Where Is My Purchase Code?</a>)</li>
|
|
<li>
|
|
<b>Envato Username.</b> (Your envato username)
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ol>
|
|
|
|
@include('install.partials.i_service')
|
|
|
|
@include('install.partials.e_license')
|
|
|
|
<a href="{{route('install.details')}}" class="btn btn-primary pull-right">I Agree, Let's Go!</a>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
@endsection
|