Server : LiteSpeed System : Linux in-mum-web1112.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u451330669 ( 451330669) PHP Version : 8.2.27 Disable Function : NONE Directory : /home/u451330669/domains/lotdelivery.in/public_html/resources/views/installation/ |
@extends('layouts.blank')
@section('content')
<!-- Title -->
<div class="text-center text-white mb-4">
<h2>6amMart Software Installation</h2>
<h6 class="fw-normal">All Done, Great Job. Your software is ready to run.</h6>
</div>
<!-- Card -->
<div class="card mt-4">
<div class="p-4 mb-md-3 mx-xl-4 px-md-5">
<div class="p-4 rounded mb-4 text-center">
<h5 class="fw-normal">Configure the following setting to run the system properly</h5>
<ul class="list-group mar-no mar-top bord-no">
<li class="list-group-item">Business Setting</li>
<li class="list-group-item">MAIL Setting</li>
<li class="list-group-item">Payment Gateway Configuration</li>
<li class="list-group-item">SMS Gateway Configuration</li>
<li class="list-group-item">3rd Party APIs</li>
</ul>
</div>
<div class="text-center">
<a href="{{ env('APP_URL') }}" target="_blank" class="btn btn-secondary px-sm-5">Landing Page</a>
@php
$data = \App\Models\DataSetting::where('type', 'login_admin')->pluck('value')->first();
@endphp
<a href="{{ env('APP_URL') }}/login/{{$data}}" target="_blank" class="btn btn-dark px-sm-5">Admin Panel</a>
</div>
</div>
</div>
@endsection