inital commit

This commit is contained in:
2026-06-24 18:29:01 +06:00
commit f401802bf7
3918 changed files with 553085 additions and 0 deletions

View File

@@ -0,0 +1,94 @@
@push('css')
<link href="{{ asset('css/payment_setting.css') }}" rel="stylesheet">
@endpush
<div id="admin-info-modal" class="modal fade" role="dialog" style="padding-top: 50px">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xs-12 mx-auto">
<div class="modal-dialog modal-dialog-centered">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Admin Information </h4>
</div>
<div class="modal-body">
<div class="admin-info-modal">
<div class="container-fluid py-3">
<div class="row">
<div class="card-body">
<form action="{{route('change.admin_info')}}" method="post" id="admin_info_form"
class="needs-validation">
@csrf
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<label>Email</label>
<input id="email" name="email" type="text"
value="{{auth()->user()->email}}"
class="form-control"
autocomplete="off" >
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<label>Current Password</label>
<div class="input-group" id="show_hide_password">
<input id="current_password" name="current_password" value="{{customDecrypt(auth()->user()->password)}}" type="password"
class="form-control" autocomplete="off" placeholder="Current Password">
<div class="input-group-addon">
<a href=""><i class="fa fa-eye-slash" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
{{-- <div class="form-row">--}}
{{-- <div class="form-group col-md-12 col-xs-12">--}}
{{-- <label>Change Password</label>--}}
{{-- <div class="input-group" id="show_hide_password">--}}
{{-- <input id="change_password" name="change_password" type="password"--}}
{{-- class="form-control"--}}
{{-- autocomplete="off" placeholder="Change Password">--}}
{{-- <div class="input-group-addon">--}}
{{-- <a href=""><i class="fa fa-eye-slash" aria-hidden="true"></i></a>--}}
{{-- </div>--}}
{{-- </div>--}}
{{-- </div>--}}
{{-- </div>--}}
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<button type="submit"
class="btn btn-info btn-block">
<i class="fa fa-lock fa-lg"></i>&nbsp;
<span>Save Changes</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,107 @@
<div class="col-md-3 left_col">
<div class="left_col scroll-view">
<div class="navbar nav_title" style="border: 0; background-color: #fff; text-align: center;">
<a href="{{ url('/') }}" class="site_title"><img src="{{ asset('images/logo.png') }}"></a>
</div>
<div class="clearfix"></div>
<!-- menu profile quick info -->
<div class="profile clearfix">
<h2 class="welcome-t">Welcome</h2>
<div class="profile_pic">
@if(empty(Auth::user()->photo))
<img src="{{ asset('images/user.png') }}" alt="profile picture"
class="img-circle profile_img">
@else
<img src="{{ url('/') }}/public/images/{{Auth::user()->photo}}" alt="profile picture"
class="img-circle profile_img">
@endif
</div>
<div class="profile_info">
<h2>{{ Auth::user()->firstname }} {{ Auth::user()->lastname }}</h2>
</div>
</div>
<!-- /menu profile quick info -->
<!-- sidebar menu -->
<div id="sidebar-menu" class="main_menu_side hidden-print main_menu">
<div class="menu_section">
<h3>Menu</h3>
<ul class="nav side-menu">
@if(isShowContent('get.clients'))
@php
$is_menu_active = request()->routeIs('get.clients') || request()->routeIs('get.client.info') || request()->routeIs('client.create');
@endphp
<li class="{{ $is_menu_active ? 'current-page' : '' }}">
<a href="{{ route('get.clients') }}"><i class="fa fa-user"></i> Client Management</a>
</li>
@endif
@if(isShowContent('training_video.list'))
<li class="{{ request()->routeIs('training_video.list') ? 'current-page' : '' }}">
<a href="{{ route('training_video.list') }}">
<i class="fa fa-youtube-play"></i>
Training Video
</a>
</li>
@endif
@if(isShowContent('sales.report'))
<li class="{{ request()->routeIs('sales.report') ? 'current-page' : '' }}">
<a href="{{ route('sales.report') }}">
<i class="fa fa-shopping-cart" aria-hidden="true"></i>
Sales Report
</a>
</li>
@endif
@if(isShowContent('terms.of.service'))
<li class="{{ request()->routeIs('terms.of.service') ? 'current-page' : '' }}">
<a href="{{route('terms.of.service')}}">
<i class="fa fa-file" aria-hidden="true"></i>
Terms And Service
</a>
</li>
@endif
@if(isShowContent('employee.list'))
@php
$is_menu_active = request()->routeIs('employee.list')||request()->routeIs('create.employee')|| request()->routeIs('get.employee.info');
@endphp
<li class="{{ $is_menu_active ? 'current-page' : '' }}">
<a href="{{route('employee.list')}}">
<i class="fa fa-user" aria-hidden="true"></i>
Employee Management
</a>
</li>
@endif
@if(isShowContent('view.provider.link'))
<li class="{{ request()->routeIs('view.provider.link') ? 'current-page' : '' }}">
<a href="{{route('view.provider.link')}}">
<i class="fa fa-file" aria-hidden="true"></i>
Credit Report Provider
</a>
</li>
@endif
@if(isAdmin())
<li class="{{ request()->routeIs('list.client.support') ? 'current-page' : '' }}">
<a href="{{ route('list.client.support') }}">
<i class="fa fa-user"></i>
Support
</a>
</li>
@endif
@if(isSupport())
<li class="{{ request()->routeIs('list.iq.history') ? 'current-page' : '' }}">
<a href="{{ route('list.iq.history') }}">
<i class="fa fa-file"></i>
Iq Call Histories
</a>
</li>
@endif
</ul>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,76 @@
<style>
.badge {
position: relative;
top: -15px;
left: -25px;
border: 1px solid red;
border-radius: 50%;
background-color: red;
}
</style>
<!-- top navigation -->
<div class="top_nav">
<div class="nav_menu">
<nav>
<div class="nav toggle">
<a id="menu_toggle"><i class="fa fa-bars"></i></a>
</div>
<ul class="nav navbar-nav navbar-right">
<li class="nav-item">
<a href="javascript:;" class="user-profile dropdown-toggle" data-toggle="dropdown"
aria-expanded="false">
@if(empty(Auth::user()->photo))
<img src="{{ asset('images/user.png') }}" alt="profile picture">
@else
<img src="{{ url('/') }}/public/images/{{Auth::user()->photo}}" alt="profile picture">
@endif
@if(isAdmin())
{{__('Admin')}}
@else
{{ Auth::user()->first_name }} {{ Auth::user()->last_name }}
@endif
<span class=" fa fa-angle-down"></span>
</a>
<ul class="dropdown-menu dropdown-usermenu pull-right">
@if(isAdmin())
<li><a href="#" onclick="event.preventDefault();$(`#admin-info-modal`).modal('show')">
{{__('Profile Change')}}
</a></li>
@endif
<li>
<form method="post" action="{{ route('user.logout') }}">
{{ csrf_field() }}
<button type="submit"
style="background-color: #fff; border: none;margin-top: 10px; margin-left:13px; color: #5A738E;"
data-toggle="tooltip" data-placement="top" title="Logout">Log Out <i
class="fa fa-sign-out pull-right" style="margin-right: 15px;"></i></button>
</form>
</li>
</ul>
</li>
@include('partials.supportsubmenu')
</ul>
</nav>
</div>
</div>
@include('partials.admin_info')
<!-- /top navigation -->
@push('script')
<script>
$(document).ready(function () {
common_helper.formValidate('#admin_info_form',
{ 'email': {required:true,email:true}, 'current_password': 'required'},
{
'email': {required: "Please enter your email"},
'current_password': {required: "Please enter your Current Password"}
}
);
})
$("#show_hide_password a").on('click', function (event) {
common_helper.globalPasswordView('#show_hide_password', event);
});
</script>
@endpush

View File

@@ -0,0 +1,91 @@
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table cellspacing="0" width="558">
<tbody>
<tr class="table_headers">
<td class="sectionHeader" id="AccountHistory">
Account History
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="560">
<tbody>
<tr>
<td class="crLightTableBackground" colspan="1" width="555">
<b>
At-a-glance viewing of your payment history
</b>
<br/>
</td>
</tr>
<tr>
<td class="crTableBackground" valign="top">
<img alt="Legend" border="0" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tu-legend-creditreport.gif"/>
<br/>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
@if(!empty($account_history_data_set['Revolving']))
<div class="crTradelineGroupHeader" >
<b>
Revolving Accounts:
</b>
Accounts with an open-end term
</div>
@include('partials.credit_report.sub_account_history',['account_history_data'=>$account_history_data_set['Revolving']])
@endif
@if(!empty($account_history_data_set['Installment']))
<div class="crTradelineGroupHeader" >
<b>
Installment Accounts:
</b>
Accounts comprised of fixed terms with regular payments
</div>
@include('partials.credit_report.sub_account_history',['account_history_data'=>$account_history_data_set['Installment']])
@endif
@if(!empty($account_history_data_set['Line_of_credit']))
@include('partials.credit_report.sub_account_history',['account_history_data'=>$account_history_data_set['Line_of_credit']])
@endif
@if(!empty($account_history_data_set['Collection']))
<div class="crTradelineGroupHeader" >
<b>
Collection Accounts:
</b>
Accounts seriously past due
</div>
@include('partials.credit_report.sub_account_history',['account_history_data'=>$account_history_data_set['Collection']])
@endif
@if(!empty($account_history_data_set['Other']))
<div class="crTradelineGroupHeader" >
<b>
Other:
</b>
Accounts in which the exact category is unknown
</div>
@include('partials.credit_report.sub_account_history',['account_history_data'=>$account_history_data_set['Other']])
@endif

View File

@@ -0,0 +1,80 @@
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560">
<tbody>
<tr>
<td>
<table cellspacing="0" width="560">
<tbody>
<tr>
<td style="font-family:Arial; font-size: 12px; font-weight:bold;">
Consumer Statement
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="560">
<tbody>
<tr class="crLightTableBackground">
<td width="2%">
</td>
<td align="start" valign="top">
<br/>
<span class="tranUnionText">
<b>
TransUnion:
</b>
</span>
{{ getConsumerStatement($consumer_statement_data_set['TransUnion'])}}
<br/>
</td>
</tr>
<tr class="crTableBackground">
<td width="2%">
</td>
<td align="start" valign="top">
<br/>
<span class="experianText">
<b>
Experian:
</b>
</span>
{{ getConsumerStatement($consumer_statement_data_set['Experian'])}}
<br/>
</td>
</tr>
<tr class="crLightTableBackground">
<td width="2%">
</td>
<td align="start" valign="top">
<br/>
<span class="equifaxText">
<b>
Equifax:
</b>
</span>
{{ getConsumerStatement($consumer_statement_data_set['Equifax'])}}
<br/>
<br/>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,91 @@
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table cellspacing="0" width="558">
<tbody>
<tr>
<td style="font-family:Arial; font-size: 12px; font-weight:bold;">
Creditor Contacts
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr>
<td class="inquiriesHeader" valign="top" width="3">
</td>
<td class="inquiriesHeader" colspan="1" width="255">
<b>
Creditor Name
</b>
<br/>
</td>
<td class="inquiriesHeader" colspan="1" width="190">
<b>
Address
</b>
</td>
<td class="inquiriesHeader" colspan="1" width="110">
<b>
Phone Number
</b>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
@foreach($creditor_contact_data_set as $creditor_contact_data)
@php
$class = 'crLightTableBackground';
if($loop->even){
$class = 'crTableBackground';
}
@endphp
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr>
<td class="{{$class}}" valign="top" width="3">
</td>
<td class="{{$class}}" valign="top" width="255">
{{$creditor_contact_data['name']}}
</td>
<td class="{{$class}}" valign="top" width="190">
{{$creditor_contact_data['CreditAddress']['unparsedStreet']}}
<br/>
{{$creditor_contact_data['CreditAddress']['city'].' '.$creditor_contact_data['CreditAddress']['stateCode'].$creditor_contact_data['CreditAddress']['postalCode']}}
<br/>
</td>
<td class="{{$class}}" valign="top" width="110">
{{ preg_replace("/^(\w{3})(\w{3})(\w{4})$/", "$1-$2-$3", $creditor_contact_data['telephone'])}}
</td>
</tr>
</tbody>
</table>
@endforeach
</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,83 @@
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table cellspacing="0" width="558">
<tbody>
<tr>
<td style="font-family:Arial; font-size: 12px; font-weight:bold;">
Inquiries
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr>
<td class="inquiriesHeader" colspan="1" width="255">
<b>
Creditor Name
</b>
<br/>
</td>
<td class="inquiriesHeader" colspan="1" width="190">
<b>
Date of inquiry
</b>
<br/>
</td>
<td class="inquiriesHeader" colspan="1" width="110">
<b>
Credit Bureau
</b>
<br/>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
@foreach($inquiries_data_set as $inquiries_data)
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr>
<td width="3">
</td>
<td class="crLightTableBackground" width="255">
{{$inquiries_data['Inquiry']['subscriberName']}}
</td>
<td class="crLightTableBackground" width="190">
{{ getStringToDateTime($inquiries_data['Inquiry']['inquiryDate'],'m/d/Y')}}
</td>
<td class="crLightTableBackground" width="110">
{{$inquiries_data['Inquiry']['bureau']}}
</td>
</tr>
</tbody>
</table>
@endforeach
</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,89 @@
<html>
<head>
<link charset="utf-8" href="https://www.smartcredit.com/resources/css/sc/pages/member/credit-report/3b/base.css" rel="stylesheet" type="text/css"/>
<style>
td#personalInfo {
width: 100%;
}
#reportTop table{
width: 100%;
}
</style>
{{-- <!-- Bootstrap -->--}}
{{-- <link href="{{ asset('theme/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet">--}}
{{-- <link href="{{ asset('css/rtg_custom.css') }}" rel="stylesheet">--}}
{{-- <link href="{{ asset('css/iq-default.min.css') }}" rel="stylesheet">--}}
{{-- <link href="{{ asset('css/smart_credit_report.css') }}" rel="stylesheet">--}}
</head>
<body >
<div id="reportTop" class="container">
<div id="TokenDisplay">
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<thead>
<tr class="crTableHeader">
<td width="25%">
</td>
<td class="tranunionHeaderColum" width="25%">
TransUnion®
</td>
<td class="experianHeaderColum" width="25%">
Experian®
</td>
<td class="equifaxHeaderColum" width="25%">
Equifax®
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<b align="left" class="sectionHeader" id="vscore" width="38%">
{{$creditScore['title']}}
</b>
</td>
<td style="font-size: 10;">
<b>
{{$creditScore['TransUnion']}}
</b>
</td>
<td style="font-size: 10;">
<b>
{{$creditScore['Experian']}}
</b>
</td>
<td style="font-size: 10;">
<b>
{{$creditScore['Equifax']}}
</b>
</td>
</tr>
</tbody>
</table>
<br/>
@include('partials.credit_report.personal_info')
<br/>
@include('partials.credit_report.consumer_statement')
<br/><br/>
@include('partials.credit_report.summary')
<br/><br/>
@include('partials.credit_report.account_history')
<br/><br/>
@include('partials.credit_report.public_info')
<br/>
@include('partials.credit_report.inquiries')
<br/><br/>
@include('partials.credit_report.creditor_contact')
<br/><br/>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,132 @@
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="560">
<tbody>
<tr class="table_headers">
<td>
</td>
<td align="left" class="sectionHeader" id="personalInfo" width="38%">
Personal Information
</td>
<td class="backtoTopText">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr class="crTableHeader">
<td width="25%">
</td>
<td class="tranunionHeaderColum" width="25%">
TransUnion®
</td>
<td class="experianHeaderColum" width="25%">
Experian®
</td>
<td class="equifaxHeaderColum" width="25%">
Equifax®
</td>
</tr>
</tbody>
</table>
@foreach($personal_infos as $key => $value)
@php
$class = 'crLightTableBackground';
if($loop->even){
$class = 'crTableBackground';
}
@endphp
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr class="{{$class}}" height="7">
<td colspan="4">
</td>
</tr>
<tr class="{{$class}}">
<td nowrap="" width="25%">
<span class="Rsmall">
<b>
{{$value['title']}}:
</b>
</span>
</td>
@if(getCreditReportValuesExistOrNot($value,$key))
<td align="Left" valign="top" width="75%" colspan="3">
<span class="Rsmall">
None Reported
</span>
</td>
@else
<td class="{{$class}}" width="25%">
<span class="Rsmall">
@foreach($value['data']['TransUnion'] as $transUnion)
<span class="Rsmall">
{{ getCreditReportPersonalInfo($transUnion,$key) }}
</span>
<br/>
@endforeach
</span>
</td>
<td class="{{$class}}" width="25%">
@foreach($value['data']['Experian'] as $experian)
{{ getCreditReportPersonalInfo($experian,$key) }}
<br/>
@endforeach
</td>
<td class="{{$class}}" width="25%">
@foreach($value['data']['Equifax'] as $equifax)
{{ getCreditReportPersonalInfo($equifax,$key) }}
@endforeach
<br/>
</td>
@endif
</tr>
<tr class="{{$class}}" height="7">
<td colspan="4">
</td>
</tr>
</tbody>
</table>
@endforeach
</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,36 @@
<table border="1" bordercolor="#eeeeee" cellspacing="0" width="556" >
<tbody>
<tr style="font-family:Arial; font-size: 12px; font-weight:bold;">
<td style="font-family:Arial; font-size: 12px; font-weight:bold;">
Public Information
</td>
</tr>
<tr>
<td>
<table>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="556">
<tbody>
<tr>
<td class="crLightTableBackground" width="5">
<img border="0" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="5"/>
</td>
<td class="crLightTableBackground" valign="top" width="555">
NONE REPORTED
</td>
</tr>
</tbody>
</table>
<br/>
</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,108 @@
<table border="0" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td class="crLightTableBackground late-count-section-title">
<b>
Days Late - 7 Year History
</b>
</td>
</tr>
</tbody>
</table>
<table class="table table-bordered late-count-section-content" >
<thead>
<tr>
<td class="late-count-column-header">
<span class="paymenttranUnionText">
TransUnion
</span>
</td>
<td class="late-count-column-header">
<span class="paymentexperianText">
Experian
</span>
</td>
<td class="late-count-column-header">
<span class="paymentequifaxText">
Equifax
</span>
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="late-count-column">
<table class="late-count-column-content-container">
<tbody>
<tr>
<td>
30:
<span class="late-count-number">{{$transUnion['GrantedTrade']['late30Count']??'--'}}</span>
</td>
<td>
60:
<span class="late-count-number">{{$transUnion['GrantedTrade']['late60Count']??'--'}}</span>
</td>
<td>
90:
<span class="late-count-number">{{$transUnion['GrantedTrade']['late90Count']??'--'}}</span>
</td>
</tr>
</tbody>
</table>
</td>
<td class="late-count-column">
<table class="late-count-column-content-container">
<tbody>
<tr>
<td>
30:
<span class="late-count-number">{{$experian['GrantedTrade']['late30Count']??'--'}}</span>
</td>
<td>
60:
<span class="late-count-number">{{$experian['GrantedTrade']['late60Count']??'--'}}</span>
</td>
<td>
90:
<span class="late-count-number">{{$experian['GrantedTrade']['late90Count']??'--'}}</span>
</td>
</tr>
</tbody>
</table>
</td>
<td class="late-count-column">
<table class="late-count-column-content-container">
<tbody>
<tr>
<td>
30:
<span class="late-count-number">{{ $equifax['GrantedTrade']['late30Count']??'--'}}</span>
</td>
<td>
60:
<span class="late-count-number">{{ $equifax['GrantedTrade']['late60Count']??'--'}}</span>
</td>
<td>
90:
<span class="late-count-number">{{ $equifax['GrantedTrade']['late90Count']??'--'}}</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,138 @@
@if(!empty($account_history_data))
@foreach($account_history_data as $revolving)
@php
$counter = 1;
$sub_account_history_data = $revolving;
$value_data = $revolving['data'];
$transUnion = (array_shift($revolving['data']['TransUnion']));
$experian = (array_shift($revolving['data']['Experian']));
$equifax = (array_shift($revolving['data']['Equifax']));
@endphp
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="560">
<tbody>
<tr>
<td class="crWhiteTradelineHeader" width="5">
</td>
<td class="crWhiteTradelineHeader">
<b>
{{$revolving['title']}}
</b>
</td>
</tr>
</tbody>
</table>
<table border="0" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="crLightTableBackground" width="558">
<tbody>
<tr>
<td class="crTableHeader" width="138"> </td>
<td class="tranunionHeaderColum" width="140"> TransUnion </td>
<td class="experianHeaderColum" width="140"> Experian </td>
<td class="equifaxHeaderColum" width="140"> Equifax </td>
</tr>
@foreach($sub_account_history_data['key_data'] as $keys => $values)
@php
if(isRowVisibleInCreditReportHtml($keys,$sub_account_history_data)){
continue;
}
$class = 'crLightTableBackground';
$class1 = '';
if($counter % 2 == 0){
$class = 'crTableBackground';
$class1 = 'accountHistoryColorRow';
}
@endphp
<tr class="{{$class}}">
<td class="{{$class1}}">
<b>
{{$values['title']}}:
</b>
</td>
<td class="{{$class1}}" >
@if(!empty($value_data['TransUnion']))
@foreach($value_data['TransUnion'] as $transUnion)
{{ getCreditReportAccountHistoryInfo($transUnion,$keys) }}
<br/>
@endforeach
@else
--
@endif
</td>
<td class="{{$class1}}" >
@if(!empty($value_data['Experian']))
@foreach($value_data['Experian'] as $experian)
{{ getCreditReportAccountHistoryInfo($experian,$keys) }}
<br/>
@endforeach
@else
--
@endif
</td>
<td class="{{$class1}}">
@if(!empty($value_data['Equifax']))
@foreach($value_data['Equifax'] as $equifax)
{{ getCreditReportAccountHistoryInfo($equifax,$keys) }}
<br/>
@endforeach
@else
--
@endif
</td>
</tr>
@php $counter++ @endphp
@endforeach
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
{{-- Two-Year payment history Start--}}
@include('partials.credit_report.two_years_payment_history',['transUnion'=>$transUnion,'experian'=>$experian,'equifax'=>$equifax])
{{-- Days Late - 7 Year History Start --}}
@include('partials.credit_report.seven_years_account_history',['transUnion'=>$transUnion,'experian'=>$experian,'equifax'=>$equifax])
@endforeach
@endif

View File

@@ -0,0 +1,78 @@
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table cellspacing="0" width="558">
<tbody>
<tr class="table_headers">
<td class="sectionHeader" id="Summary">
Summary
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr class="crTableHeader">
<td class="crTableHeader" width="25%">
</td>
<td class="tranunionHeaderColum">
TransUnion®
</td>
<td class="experianHeaderColum">
Experian®
</td>
<td class="equifaxHeaderColum">
Equifax®
</td>
</tr>
@foreach($summary_info_data_set as $summary_info_data)
@php
$class = 'crLightTableBackground';
if($loop->even){
$class = 'crTableBackground';
}
@endphp
<tr class="{{$class}}">
<td class="{{$class}}" valign="bottom">
<span class="Rsmall">
<b>
{{$summary_info_data['title']}}:
</b>
</span>
</td>
<td class="{{$class}}" valign="bottom">
<span class="Rsmall">
{{$summary_info_data['TransUnion']}}
</span>
</td>
<td class="{{$class}}" valign="bottom">
<span class="Rsmall">
{{$summary_info_data['Experian']}}
</span>
</td>
<td class="{{$class}}" valign="bottom">
<span class="Rsmall">
{{$summary_info_data['Equifax']}}
</span>
</td>
</tr>
@endforeach
</tbody>
</table>
</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,257 @@
<table border="0" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td class="crLightTableBackground" colspan="3">
<img alt="unkown" height="5" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="5"/>
</td>
</tr>
<tr>
<td class="crLightTableBackground" width="5">
<img alt="unkown" height="18" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="5"/>
</td>
<td class="crLightTableBackground" valign="top" width="355">
<b>
Two-Year payment history
</b>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr>
<td class="crLightTableBackground" width="8">
<img alt="unkown" height="18" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="5"/>
</td>
<td class="crLightTableBackground" rowspan="2" style="font-size: 10px;" valign="top" width="65">
<span class="paymenttranUnionText">
TransUnion
</span>
<img alt="unkown" height="2" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="3"/>
</td>
@if(!empty($transUnion['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']))
@foreach(array_reverse($transUnion['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']) as $monthlyPayStatus)
@php
$pay_status = getMonthlyPayStatus($monthlyPayStatus);
@endphp
<td class="crLightTableBackground" width="22">
<img alt="{{$pay_status['status']}}" height="11" src="{{$pay_status['url']}}" width="17"/>
</td>
@endforeach
@else
<td align="left" class="crLightTableBackground" colspan="24">
<b> NONE REPORTED </b>
</td>
@endif
</tr>
@if(!empty($transUnion['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']))
<tr>
<td class="crLightTableBackground">
</td>
@foreach(array_reverse($transUnion['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']) as $monthlyPayStatus)
@php
$data = getPayStatusHistory($monthlyPayStatus);
@endphp
@if($data['isViewed'])
<td class="crLightTableBackground" style="font-size: 8px; font-weight: bold; " width="22">
<img alt="'" height="9" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/monthsandyears/apostrophe-gray.gif" width="5"/>
<img alt="{{$data['year_split_0']}}" height="9" src="{{$data['url1']}}" width="6"/>
<img alt="{{$data['year_split_1']}}" height="9" src="{{$data['url2']}}" width="6"/>
</td>
@else
<td class="crLightTableBackground" style="font-size: 8px; font-weight: bold; " width="22">
<img alt="{{strtoupper($data['month'])}}" height="9" src="{{$data['url3']}}" width="17"/>
</td>
@endif
@endforeach
</tr>
@endif
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="0" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" height="2" width="560" >
<tbody>
<tr>
<td>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr>
<td class="crLightTableBackground" width="8">
<img alt="unkown" height="18" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="5"/>
</td>
<td class="crLightTableBackground" rowspan="2" style="font-size: 10px;" valign="top" width="65">
<span class="paymentexperianText">
Experian
</span>
<img alt="unkown" height="2" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="3"/>
</td>
@if(!empty($experian['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']))
@foreach(array_reverse($experian['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']) as $monthlyPayStatus)
@php
$pay_status = getMonthlyPayStatus($monthlyPayStatus);
@endphp
<td class="crLightTableBackground" width="22">
<img alt="{{$pay_status['status']}}" height="11" src="{{$pay_status['url']}}" width="17"/>
</td>
@endforeach
@else
<td align="left" class="crLightTableBackground" colspan="24"> <b> NONE REPORTED </b> </td>
@endif
</tr>
@if(!empty($experian['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']))
<tr>
<td class="crLightTableBackground">
</td>
@foreach(array_reverse($experian['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']) as $monthlyPayStatus)
@php
$data = getPayStatusHistory($monthlyPayStatus);
@endphp
@if($data['isViewed'])
<td class="crLightTableBackground" style="font-size: 8px; font-weight: bold; " width="22">
<img alt="'" height="9" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/monthsandyears/apostrophe-gray.gif" width="5"/>
<img alt="{{$data['year_split_0']}}" height="9" src="{{$data['url1']}}" width="6"/>
<img alt="{{$data['year_split_1']}}" height="9" src="{{$data['url2']}}" width="6"/>
</td>
@else
<td class="crLightTableBackground" style="font-size: 8px; font-weight: bold; " width="22">
<img alt="{{strtoupper($data['month'])}}" height="9" src="{{$data['url3']}}" width="17"/>
</td>
@endif
@endforeach
</tr>
@endif
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="0" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" height="2" width="560" >
<tbody>
<tr>
<td>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr>
<td class="crLightTableBackground" width="8">
<img alt="unkown" height="18" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="5"/>
</td>
<td class="crLightTableBackground" rowspan="2" style="font-size: 10px;" valign="top" width="65">
<span class="paymentequifaxText">
Equifax
</span>
<img alt="unkown" height="2" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/tradeline-clear.gif" width="3"/>
</td>
@if(!empty($equifax['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']))
@foreach(array_reverse($equifax['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']) as $monthlyPayStatus)
@php
$pay_status = getMonthlyPayStatus($monthlyPayStatus);
@endphp
<td class="crLightTableBackground" width="22">
<img alt="{{$pay_status['status']}}" height="11" src="{{$pay_status['url']}}" width="17"/>
</td>
@endforeach
@else
<td align="left" class="crLightTableBackground" colspan="24"> <b> NONE REPORTED </b> </td>
@endif
</tr>
@if(!empty($equifax['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']))
<tr>
<td class="crLightTableBackground">
</td>
@foreach(array_reverse($equifax['GrantedTrade']['PayStatusHistory']['MonthlyPayStatus']) as $monthlyPayStatus)
@php
$data = getPayStatusHistory($monthlyPayStatus);
@endphp
@if($data['isViewed'])
<td class="crLightTableBackground" style="font-size: 8px; font-weight: bold; " width="22">
<img alt="'" height="9" src="https://www.smartcredit.com/resources/images/shared/tui/creditreport/monthsandyears/apostrophe-gray.gif" width="5"/>
<img alt="{{$data['year_split_0']}}" height="9" src="{{$data['url1']}}" width="6"/>
<img alt="{{$data['year_split_1']}}" height="9" src="{{$data['url2']}}" width="6"/>
</td>
@else
<td class="crLightTableBackground" style="font-size: 8px; font-weight: bold; " width="22">
<img alt="{{strtoupper($data['month'])}}" height="9" src="{{$data['url3']}}" width="17"/>
</td>
@endif
@endforeach
</tr>
@endif
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td class="crLightTableBackground">
<img alt="" height="2" src="https://www.smartcredit.com/resources/images/shared/tui/clear.gif" width="1"/>
</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,67 @@
@php
$decisionFromClientWave=decisionFromClientWave();
@endphp
<select name="info_item[wave][]" id="wave-0"
class="form-control"
onchange="showDtype(this, 0)"
required="">
<option value="">Please select template</option>
@foreach($decisionFromClientWave as $decision)
@php $select = ($decision['key'] == 'w'.$creditreport->wave) ? 'selected': ''; @endphp
<option value="{{$decision['key']}}" {{$select}}>{{$decision['text']}}</option>
<option value="{{$decision['key']}}" disabled="disabled">{{$decision['text']}}</option>
@endforeach
<!-- <option value="w2">I want to use a Wave 2 attack for
this content box's items (Day 20-39)
</option>
<option value="w2" disabled="disabled">I want to use
a Wave 2 attack for this content box's items
(Day 20-39)
</option>
<option value="w3">I want to use a Wave 3 attack for
this content box's items (Day 40-59)
</option>
<option value="w3" disabled="disabled">I want to use
a Wave 3 attack for this content box's items
(Day 40-59)
</option>
<option value="w4">I want to use a Wave 4 attack for
this content box's items (Day 60-79)
</option>
<option value="w4" disabled="disabled">I want to use
a Wave 4 attack for this content box's items
(Day 60-79)
</option>
<option value="w5">I want to use a Wave 5 attack for
this content box's items (Day 80-99)
</option>
<option value="w5" disabled="disabled">I want to use
a Wave 5 attack for this content box's items
(Day 80-99)
</option>
<option value="w6">I want to use a Wave 6+ attack
for this content box's items (Day 100-119)
</option>
<option value="w6" disabled="disabled">I want to use
a Wave 6+ attack for this content box's items
(Day 100-119)
</option>
<option value="w7">I want to use a RANDOM WAVE #
Attack for this content box's item (Day ??)
</option>-->
</select>

View File

@@ -0,0 +1,18 @@
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '450475028484130');
fbq('track', 'PageView');
fbq('track', 'Purchase');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=450475028484130&ev=PageView&noscript=1"
/></noscript>
<!-- End Meta Pixel Code -->

View File

@@ -0,0 +1 @@
<span class="text-bold" id="label_identity_proof_file"><strong>(Max. file size {{sizeFilter($max_file_size)}} and File Type jpeg, jpg, png, x-eps)</strong></span>

View File

@@ -0,0 +1,11 @@
<footer>
<div class="row">
<div class="col-xs-12 col-sm-12 column col-sm-offset-0 ">
<div class="panel panel-default">
<strong>
Secure SSL Area | This website is protected by secure portal © 2025 Clickletters LLC/M2C Academy LLC. All rights reserved.
</strong>
</div>
</div>
</div>
</footer>

View File

@@ -0,0 +1,7 @@
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-188772272-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-188772272-3');
</script>

View File

@@ -0,0 +1,32 @@
<table>
<thead>
<tr>
<th>Id</th>
<th>IP</th>
<th>Port</th>
<th>Page</th>
<th>Status Code</th>
<th>Status</th>
<th>Created On</th>
</tr>
</thead>
<tbody>
@foreach ($data as $obj)
<tr>
<td>{{ $obj['id'] }}</td>
<td>{{$obj['ip']}}</td>
<td>{{$obj['port']}}</td>
<td>{{$obj['page']}}</td>
<td>{{$obj['error_code']}}</td>
<td>{{$obj['status']}}</td>
<td>{{$obj['created_at']}}</td>
</tr>
@endforeach
</tbody>
</table>

View File

@@ -0,0 +1,27 @@
<script>
!function (f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function () {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '450475028484130');
fbq('track', 'PageView');
fbq('track', 'Lead');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=450475028484130&ev=PageView&noscript=1"
/></noscript>

View File

@@ -0,0 +1,20 @@
<div class="modal fade" id="common_confirmation_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-md" id="modal-dialog-panel">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<h4 class="mb-2 text-center" id="common_message_text">
</h4>
</div>
<div class="modal-footer" style="text-align: center">
<button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,23 @@
<div class="modal fade" id="confirmation_modal_subscription" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-md" id="modal-dialog-panel">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<h4 class="mb-2 text-center" id="message_text_subscription">
{{$inputData['message']}}
</h4>
</div>
<div class="modal-footer" style="text-align: center">
<button class="btn btn-success btn-lg" onclick="submitSubscription()" id="btn-submit-subscription">Yes</button>
<button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,63 @@
@php
$source_types = config('constant.sourceType');
$credit_report_providers = getCache('credit_report_provider_link');
$free_value = array_keys(config('constant.CLIENT_TYPES'),"Free");
@endphp
<div class="modal fade" id="first_time_login_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-width" >
<div class="modal-content">
<div class="modal-header modal-header-info">
<h5 class="modal-title">Congratulations! Your in. First step is the set up your credit report system to import your credit report now.</h5>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-6 col-xs-12">
<div class="form-group">
<label for="source_type">Source Type</label>
<select class="form-control" id="report_provider">
@foreach($source_types as $key => $value)
@if(auth()->user()->is_free == (int)$free_value && $value == config('constant.sourceType.SmartCredit'))
@continue;
@endif
<option value="{{$value}}" {{auth()->user()->credit_report_company_type == $value ? 'selected':''}}> {{$key}}</option>
@endforeach
</select>
</div>
</div>
</div>
<div class="row " >
<h5 class="mb-1 text-center font-bold" >IMPORTANT:</h5>
<h5 class="mb-1 text-center">SET UP YOUR CREDIT REPORT NOW TO IMPORTANT INTO CREDIT ZOMBIES SOFTWARE</h5>
<h5 class="mb-1 text-center color-red">USE THE SAME EMAIL AND PASSWORD THAT YOU USED TO SET UP CREDIT ZOMBIES SYSTEM</h5>
</div>
</div>
<div class="modal-footer" style="text-align: center!important;">
<button class="btn btn-success btn-lg" onclick="hideFirstTimeLoginModalView()">Go Get Credit Report</button>
<button type="button" class="btn btn-secondary btn-lg pull-left" onclick="firstTimeLoginUserUpdate()" >Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="first_time_login_view_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-width" >
<div class="modal-content">
<div class="modal-header modal-header-info">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h5 class="modal-title">Congratulations! Your in. Next step add your 3 forms of information below</h5>
</div>
<div class="modal-body">
<h5 class="mb-1 text-left">1. Drivers license image</h5>
<h5 class="mb-1 text-left">2. Your Social Security Card image</h5>
<h5 class="mb-1 text-left">3. Your most recent bill image ( any bill )</h5>
</div>
<div class="modal-footer" style="text-align: center!important;">
<button class="btn btn-success btn-lg" id="btn_first_time_login">Ok</button>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,48 @@
@php
$user_image_path = getSession('user_image');
$profile_image = getSession('profile_image');
$max_file_size= $file = config('constant.MAX_FILE_SIZE');
@endphp
<div class="modal fade" id="profile_pic_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-md" >
<div class="modal-content">
<div class="modal-header">
<h4 class="mb-2 text-center font-bold pull-left" > Upload Profile Picture </h4>
<button type="button" class="close pull-right" data-dismiss="modal">&times;</button>
</div>
<form method="post" action="{{route('upload.client.image')}}" autocomplete="off"
enctype=multipart/form-data
class="input-form-section">
@csrf
<div class="modal-body">
<input type="hidden" id="doc_type" name="doc_type" value="9"/>
<div class="row">
@if(!empty($user_image_path))
<div class="text-center" id="profile_pic_id">
<img src="{{getPublicFile($user_image_path)}}"
class="img-client"><br>
</div>
@endif
<input id="profile_pic" type="file" class="form-control"
name="uploadmedia[profile_pic]"
onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"
accept="image/jpeg,image/gif,image/png,image/x-eps">
@include('partials.file_size_label')
</div>
<div class="row text-center">
<button type="submit" class="btn btn2" >Upload</button>
</div>
</div>
</form>
<div class="modal-footer">
<button type="button" class="btn btn-secondary btn-lg pull-left" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,106 @@
@push('css')
<link href="{{ asset('css/payment_setting.css') }}" rel="stylesheet">
@endpush
<div id="payment-report-modal" class="modal fade" role="dialog" style="padding-top: 50px">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xs-12 mx-auto">
<div class="modal-dialog modal-dialog-centered">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Add Payment Or Update New Credit Card</h4>
</div>
<div class="modal-body">
<div class="payment-report-modal">
<div class="container-fluid py-3">
<div class="row">
<div class="card-body">
@php
$user_last_payment = getCache('card_no');
@endphp
@if(!empty($user_last_payment))
<label style="margin-left: 20px"> Last Payment By : {{$user_last_payment}}
@if(auth()->user()->last_payment_date!=null)
at {{getStringToDate(auth()->user()->last_payment_date)}}
@endif
</label>
@endif
<form action="{{route('payment.create')}}" method="post" id="payment-report_form"
class="needs-validation">
@csrf
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<input id="cc-number" name="card_number" type="text"
value="{{getCache('card_'.auth()->id())}}"
placeholder="Card Number"
class="form-control cc-number identified visa"
autocomplete="off">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6 col-xs-12">
<input id="expiry" name="expiry" type="text"
value="{{getCache('expiration_'.auth()->id())}}"
class="form-control" autocomplete="off" onkeyup="expiryCard()" placeholder="MM/YY" maxlength="5">
</div>
<div class="form-group col-md-6 col-xs-12">
<input id="x_card_code" name="cvv" type="text"
value="{{getCache('cvv_'.auth()->id())}}" class="form-control"
autocomplete="off" placeholder="CVV">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6 col-xs-12 text-left">
<input class="form-check-input" onclick="common_helper.saveCardCheckUncheck(this,'#clear_card')" type="checkbox" name="save_card"
value="1" id="save_card">
<label class="form-check-label" for="saveCard">
Save Card
</label>
</div>
<div class="form-group col-md-6 col-xs-12 text-left">
<input onclick="common_helper.saveCardCheckUncheck(this,'#save_card')" class="form-check-input" type="checkbox" name="clear_card"
value="1" id="clear_card">
<label class="form-check-label" for="saveCard">
Clear
</label>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<button id="payment-button" type="submit" onclick="return payment_form_submit(this)"
class="btn btn-md btn-info btn-block">
<i class="fa fa-lock fa-lg"></i>&nbsp;
<span id="payment-button-amount">Pay </span>
<span id="payment-button-sending"
style="display:none;">Sending…</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,25 @@
<div class="modal fade" id="recurring_view_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-md" style="width: 25%">
<div class="modal-content border-0">
<div class="modal-header modal-header-warning">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Subscription Information</h4>
</div>
<div class="modal-body ">
<h5 class="mb-1 text-left">Oops! There is an issue with your payment</h5>
<h5 class="mb-1 text-left">Please update or add a new payment method now</h5>
</div>
<div class="modal-footer">
<button class="btn btn-success btn-lg" id="btn_recurring">Payment</button>
<button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script>
$('#btn_recurring').click((e)=>{
$('#recurring_view_modal').modal('hide');
common_helper.commonModalView('{{route('show.modal')}}','PAYMENT_MODAL_VIEW','payment-report-modal');
});
</script>

View File

@@ -0,0 +1,37 @@
<div class="modal fade" id="support_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-md" id="modal-dialog-panel">
<div class="modal-content">
<form method="post" action="{{route('create.client.support')}}" id="support_form"
autocomplete="off"
class="input-form-section">
@csrf
<div class="modal-header">
<h4 class="mb-2 text-center font-bold pull-left" >Support: </h4>
<button type="button" class="close pull-right" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<div class="row modal-style" >
<p class="mb-1 text-justify">Please Only submit Technical Issues, we do not handle credit repair questions, or how to create letters specifically. We can only help with the technical issue within the software when things are not working corretly. Please send all other questions to Admin at Credit Zombies. </p>
<p class="mb-2 text-left" >Thank you </p>
</div>
<div class="row">
<div class="form-group">
<input type="text" class="form-control" id="support_title" name="support_title" placeholder="Title" ></input>
</div>
<div class="form-group">
<textarea rows="4" cols="50" class="form-control" id="support_text" name="support_text" placeholder="Please write what is your problem or needs" ></textarea>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary btn-lg pull-left" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn2 pull-right" >Click For Technical Support Only</button>
</div>
</form>
</div>
</div>
</div>

View File

@@ -0,0 +1,44 @@
@php
$max_file_size= $file = config('constant.MAX_FILE_SIZE');
@endphp
<div class="modal fade" id="upload_pic_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-md" >
<div class="modal-content">
<div class="modal-header">
<h4 class="mb-2 text-center font-bold pull-left" id="pic_header" > Upload Document </h4>
<button type="button" class="close pull-right" data-dismiss="modal">&times;</button>
</div>
<form method="post" action="{{route('upload.client.image')}}" autocomplete="off" id="doc_upload_form"
enctype=multipart/form-data
class="input-form-section">
@csrf
<div class="modal-body">
<input type="hidden" id="doc_type" name="doc_type"/>
<div class="row">
<div class="text-center">
<img src="#"
class="img-client" id="uploaded_doc" ><br>
</div>
<input id="profile_pic" type="file" class="form-control"
name="uploadmedia[profile]"
onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"
accept="image/jpeg,image/gif,image/png,image/x-eps">
@include('partials.file_size_label')
</div>
<div class="row text-center">
<button type="submit" id="doc_upload_btn" class="btn btn2" >Upload</button>
</div>
</div>
</form>
<div class="modal-footer">
<button type="button" class="btn btn-secondary btn-lg pull-left" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,104 @@
@push('css')
<link href="{{ asset('css/payment_setting.css') }}" rel="stylesheet">
@endpush
<div id="payment-report-modal" class="modal fade" role="dialog" style="padding-top: 50px">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xs-12 mx-auto">
<div class="modal-dialog modal-dialog-centered">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Add Payment Or Update New Credit Card</h4>
</div>
<div class="modal-body">
<div class="payment-report-modal">
<div class="container-fluid py-3">
<div class="row">
<div class="card-body">
@php
$user_last_payment = getCache('card_no');
@endphp
@if(!empty($user_last_payment))
<label style="margin-left: 20px"> Last Payment By : {{$user_last_payment}}
@if(auth()->user()->last_payment_date!=null)
at {{getStringToDate(auth()->user()->last_payment_date)}}
@endif
</label>
@endif
<form action="{{route('payment.create')}}" method="post" id="payment-report_form"
class="needs-validation">
@csrf
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<input id="cc-number" name="card_number" type="text"
value="{{getCache('card_'.auth()->id())}}"
placeholder="Card Number"
class="form-control cc-number identified visa"
autocomplete="off">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6 col-xs-12">
<input id="expiry" name="expiry" type="text"
value="{{getCache('expiration_'.auth()->id())}}"
class="form-control" autocomplete="off" placeholder="MM/YY" maxlength="5">
</div>
<div class="form-group col-md-6 col-xs-12">
<input id="x_card_code" name="cvv" type="text"
value="{{getCache('cvv_'.auth()->id())}}" class="form-control"
autocomplete="off" placeholder="CVV">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6 col-xs-12 text-left">
<input class="form-check-input" onclick="common_helper.saveCardCheckUncheck(this,'#clear_card')" type="checkbox" name="save_card"
value="1" id="save_card">
<label class="form-check-label" for="saveCard">
Save Card
</label>
</div>
<div class="form-group col-md-6 col-xs-12 text-left">
<input onclick="common_helper.saveCardCheckUncheck(this,'#save_card')" class="form-check-input" type="checkbox" name="clear_card"
value="1" id="clear_card">
<label class="form-check-label" for="saveCard">
Clear
</label>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<button id="payment-button" type="submit"
class="btn btn-md btn-info btn-block">
<i class="fa fa-lock fa-lg"></i>&nbsp;
<span id="payment-button-amount">Pay </span>
<span id="payment-button-sending"
style="display:none;">Sending…</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,122 @@
<style>
.module_text{
text-align: left;
padding-left: 30%;
}
.submodule_text{
text-align: right;
padding-right: 40%;
}
@media screen and (max-width: 800px) {
.module_text{
text-align: left;
padding-left: 1%;
}
.submodule_text{
text-align: right;
padding-right: 1%;
}
}
</style>
<div class="row table-responsive">
<label class="text">Permission</label>
<table id="permission-table" class="table table-bordered rolebase-tbl" >
<thead>
<tr>
<th>Module</th>
<th>SubModule</th>
</tr>
</thead>
<tbody>
@foreach($moduleSubmoduleAssoc as $ms)
<tr class="tr-height">
<td class="text" >
<div class="module_text">
<label class="label-text">{{$ms->name}}</label>
</div>
</td>
<td>
@foreach($ms->submodules as $submodule)
@php
$checked = '';
if(!empty($employee_permission) && in_array($submodule['id'],$employee_permission->toArray()))
$checked = 'checked';
@endphp
<div class="form-check submodule_text" id="sub_module_panel">
<label>
{{$submodule['name']}} <input type="checkbox" {{$checked}} name="userRole[]" value="{{$submodule['id']}}"> <span class="label-text"></span>
</label>
</div>
@endforeach
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@push('css')
<style>
.rolebase-tbl label{
position: relative;
cursor: pointer;
color: #666;
font-size: 15px;
}
.rolebase-tbl input[type="checkbox"], input[type="radio"]{
position: absolute;
right: 9000px;
}
/*Check box*/
.rolebase-tbl input[type="checkbox"] + .label-text:before{
content: "\f096";
font-family: "FontAwesome";
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing:antialiased;
width: 1em;
display: inline-block;
margin-right: 5px;
}
.rolebase-tbl input[type="checkbox"]:checked + .label-text:before{
content: "\f14a";
color: #2980b9;
animation: effect 250ms ease-in;
}
.rolebase-tbl input[type="checkbox"]:disabled + .label-text{
color: #aaa;
}
.rolebase-tbl input[type="checkbox"]:disabled + .label-text:before{
content: "\f0c8";
color: #ccc;
}
@keyframes effect{
0%{transform: scale(0);}
25%{transform: scale(1.3);}
75%{transform: scale(1.4);}
100%{transform: scale(1);}
}
</style>
@endpush

View File

@@ -0,0 +1,77 @@
@push('css')
{{-- <link href="{{ asset('css/payment_setting.css') }}" rel="stylesheet">--}}
@endpush
<div id="security-question-modal" class="modal fade" role="dialog" style="padding-top: 50px">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xs-12 mx-auto">
<div class="modal-dialog modal-dialog-centered">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Add Security Question</h4>
</div>
<div class="modal-body">
<div class="payment-report-modal">
<div class="container-fluid py-3">
<div class="row">
<div class="card-body">
<form action="{{route('payment.create')}}" method="post" id="security-question-form"
class="needs-validation">
@csrf
@php
$security_questions= config('constant.SECURITY_QUESTION');
@endphp
@foreach($security_questions as $key=>$value)
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<label> {{$key.'. '}} {{$value}}</label><br/>
@php
$sequrity_answer='constant.SECURITY_QUESTION_ANSWERS.'.$key;
$security_question_answers= config($sequrity_answer);
@endphp
@foreach($security_question_answers as $akey=>$avalue)
<input type="radio" id="{{$avalue}}" name="{{'answer'.$key}}" value="{{$akey}}">
<label for="{{$avalue}}">{{$avalue}}</label><br/>
@endforeach
</div>
</div>
@endforeach
<div class="form-row">
<div class="form-group col-md-12 col-xs-12">
<button id="payment-button" type="submit"
class="btn btn-md btn-info btn-block">
<i class="fa fa-lock fa-lg"></i>&nbsp;
<span id="payment-button-amount">Pay </span>
<span id="payment-button-sending"
style="display:none;">Sending…</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,59 @@
@php
$logo_path = 'images/'.config('app.name').'_logo.png';
$user_image_path = getSession('user_image');
$profile_image = getSession('profile_image');
@endphp
<div class="col-md-3 left_col">
<div class="left_col scroll-view">
<div class="navbar nav_title" style="border: 0; background-color: #fff; text-align: center;">
<a href="{{ url('/') }}" class="site_title"><img src="{{ asset($logo_path) }}"></a>
</div>
<div class="clearfix"></div>
<!-- menu profile quick info -->
<div class="profile clearfix">
<h2 class="welcome-t">Welcome</h2>
<div class="profile_pic">
@if(empty($profile_image))
<img src="{{ asset('images/user.png') }}" alt="profile picture"
class="img-circle profile_img">
@else
<img src="{{getPublicFile($user_image_path)}}" alt="profile picture"
class="img-circle profile_img">
@endif
</div>
<div class="profile_info">
<h2>{{ Auth::user()->firstname }} {{ Auth::user()->lastname }}</h2>
</div>
</div>
<!-- /menu profile quick info -->
<!-- sidebar menu -->
<div id="sidebar-menu" class="main_menu_side hidden-print main_menu">
<div class="menu_section">
<h3>Menu</h3>
<ul class="nav side-menu">
<li class="{{ request()->routeIs('show.manage.clients') ? 'current-page' : '' }}">
<a href="{{ route('manage.clients') }}"><i class="fa fa-user"></i> Account Information</a>
</li>
@if(auth()->user()->is_first_login == 0)
<li class="{{ request()->routeIs('get.letter') ? 'current-page' : '' }}">
<a href="{{ route('get.letter') }}"><i class="fa fa-file-text"></i> WORK AREA</a>
</li>
@endif
<li class="{{ request()->routeIs('training_video.index') ? 'current-page' : '' }}">
<a href="{{ route('training_video.index') }}"><i class="fa fa-youtube-play"></i> Software Training</a>
</li>
<li class="{{ request()->routeIs('list.client.support') ? 'current-page' : '' }}">
<a href="{{ route('list.client.support') }}">
<i class="fa fa-user"></i>
Support
</a>
</li>
</ul>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,89 @@
<style>
.header_style{
font-weight: 400 !important;
color:#9c9393 !important;
}
.heading{
padding-left: 50px !important;
padding-right: 0px !important;
padding-bottom: 0px !important;
padding-top: 0px !important;
text-align: left!important;
}
#client-status .btn2 {
margin: 0px !important;
padding: 10px !important;
font-size: 12px !important;
}
#client-status .btn-position {
margin-right: 50px;
}
@media (max-width: 800px) {
#client-status .btn2 {
font-weight: 400 !important;
font-size: 12px !important;
margin: 0px!important;
padding: 5px 5px !important;
}
#client-status .btn-position {
margin-right: 0px !important;
}
}
</style>
@php
if(auth()->user()->credit_report_company_type == config('constant.sourceType.SmartCredit')){
$logo_src = asset('images/smartcredit_logo.png');
$source_name = 'Smart Credit';
}else {
$logo_src = asset('images/identityiq_logo.webp');
$source_name = 'Identity Iq';
}
$credit_report_provider = getCache('credit_report_provider_link');
$go_to_url = $credit_report_provider[auth()->user()->credit_report_company_type];
@endphp
<table class="table table-responsive " id="client-status" style="margin-bottom: 0px!important;">
<tr style="text-align: left!important;">
<td>
<span class="header_style">PARTNER COMPANY</span>
<p>
<img src="{{ $logo_src }}" alt="{{$source_name}}" width="100px" height="30px" class="brand-logo">
</p>
</td>
<td>
<span class="header_style">STATUS</span>
<p>
@if(Auth::user()->subscription_status == config('constant.SUBSCRIPTION_STATUS.SUBSCRIBED'))
<label>Active</label>
@else
<label>InActive</label>
@endif
</p>
</td>
<td>
<span class="header_style"> NEXT IMPORT</span>
<p>
<label>{{getNextImportDate()}} </label>
</p>
</td>
<td style="width: 15%">
<span class="btn-position">
<a href="{{$go_to_url }}" target="_blank" class="btn btn-success btn2 " > Go To {{$source_name}} </a>
</span>
</td>
</tr>
</table>

View File

@@ -0,0 +1,27 @@
@php
$supports = getSession('new_ticket');
$support_count = is_array($supports) ? count($supports) : 0 ;
@endphp
@if(isAdmin() || isClient())
<li class="nav-item notifications-menu admin-ticket">
<a href="{{ $support_count>0 ? 'javascript:;' : route('list.client.support')}}" class="user-profile dropdown-toggle" data-toggle="{{ $support_count>0 ? 'dropdown' : ''}}" aria-expanded="false">
<i class="fa fa-bell-o"></i>
<span class="label label-warning"></span>
@if($support_count > 0)
<span class="badge badge-light"> @php echo $support_count @endphp </span>
@endif
</a>
@if($support_count > 0)
<ul class="dropdown-menu dropdown-usermenu pull-right">
@foreach($supports as $key => $obj)
<li><a href=" {{ route('view.client.support',$obj->id) }}"> {{$obj->title}}</a></li>
@endforeach
</ul>
@endif
</li>
@endif

View File

@@ -0,0 +1,177 @@
<style>
.badge {
position: relative;
top: -15px;
left: -25px;
border: 1px solid red;
border-radius: 50%;
background-color: red;
}
</style>
@php
$user_image_path = getSession('user_image');
$profile_image = getSession('profile_image');
$max_file_size= $file = config('constant.MAX_FILE_SIZE');
@endphp
<!-- top navigation -->
<div class="top_nav">
<div class="nav_menu">
<nav>
<div class="nav toggle">
<a id="menu_toggle"><i class="fa fa-bars"></i></a>
</div>
<ul class="nav navbar-nav navbar-right">
<li class="nav-item">
<a href="javascript:;" class="user-profile dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
@if(empty($profile_image))
<img src="{{ asset('images/user.png') }}" alt="profile picture">
@else
<img src="{{getPublicFile($user_image_path)}}" alt="profile picture">
@endif{{ Auth::user()->first_name }} {{ Auth::user()->last_name }}
<span class=" fa fa-angle-down"></span>
</a>
<ul class="dropdown-menu dropdown-usermenu pull-right">
<li><a onclick="common_helper.commonModalView('{{route('show.modal')}}','PROFILE_IMAGE_MODAL_VIEW','profile_pic_modal')"> Profile</a></li>
<li><a onclick="common_helper.commonModalView('{{route('show.modal')}}','SUPPORT_MODAL_VIEW','support_modal')"> Technical Support </a></li>
<li><a onclick="common_helper.commonModalView('{{route('show.modal')}}','PAYMENT_MODAL_VIEW','payment-report-modal')"> Payment Settings</a></li>
{{-- @if(auth()->user()->is_import == config('constant.IMPORT_REPORT_STATUS.ELIGIBLE'))--}}
{{-- <li><a href="#" onclick="event.preventDefault();$(`#confirmation_modal`).modal('show')"> Cancel Payment</a></li>--}}
{{-- @endif--}}
{{-- @php--}}
{{-- $subscription_status_view = 'Subscribed';--}}
{{-- if(Auth::user()->subscription_status == config('constant.SUBSCRIPTION_STATUS.SUBSCRIBED')){--}}
{{-- $subscription_status_view = 'cancel';--}}
{{-- }--}}
{{-- @endphp--}}
@if(Auth::user()->subscription_status == config('constant.SUBSCRIPTION_STATUS.SUBSCRIBED'))
<li><a href="#" onclick="subscription()"> {{'Cancel Account'}}</a></li>
@endif
<li>
<form method="post" action="{{ route('user.logout') }}">
{{ csrf_field() }}
<button type="submit" style="background-color: #fff; border: none;margin-top: 10px; margin-left:13px; color: #5A738E;" data-toggle="tooltip" data-placement="top" title="Logout">Log Out <i class="fa fa-sign-out pull-right" style="margin-right: 15px;"></i></button>
</form>
</li>
</ul>
</li>
@include('partials.video_setting')
@include('partials.supportsubmenu')
</ul>
</nav>
@include('partials.smart_credit_status')
</div>
</div>
<!-- /top navigation -->
<div id="modal_target"></div>
<!--
<div class="modal fade" id="confirmation_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-md" id="modal-dialog-panel">
<div class="modal-content">
<div class="modal-header modal-header-warning">
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<h4 class="mb-2 text-center" id="message_text">
Are you sure you want to delete your payment
and cancel Credit Zombies/SmartCredit account?
</h4>
</div>
<div class="modal-footer" style="text-align: center">
<button class="btn btn-success btn-lg" id="btn-submit-form">Yes</button>
<button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
-->
@push('script')
<script type="text/javascript">
$('#popup_youtube').click(function (e) {
e.preventDefault();
common_helper.youtubePopup($("#popup_youtube"));
});
const callbackfunction=(result)=>{
if(result.status)
{
// $('#confirmation_modal').modal('hide');
@php
unsetCache('card_'.auth()->id());
unsetCache('expiration_'.auth()->id());
unsetCache('cvv_'.auth()->id());
@endphp
window.location.href='{{route('manage.clients')}}';
}
}
$('#btn-submit-form').click(function (e) {
common_helper.globalAjaxRequestAsync('{{route('process.ajax')}}','POST',{action:'DELETE_RECURRING',id:null, _token:"{{ csrf_token() }}"},callbackfunction);
})
const subscription = () => {
event.preventDefault();
let message = 'Are you sure you want to cancel your account?'
common_helper.commonModalView('{{route('show.modal')}}','COMMON_MODAL','confirmation_modal_subscription',message);
}
{{--$('#btn-submit-subscription').click(function (e) {--}}
{{-- common_helper.globalAjaxRequestAsync('{{route('process.ajax')}}','POST',{action:'SUBSCRIPTION_SMART_CREDIT',id:null, _token:"{{ csrf_token() }}"},subscriptioncallbackfunction);--}}
{{--})--}}
const submitSubscription = ()=>{
common_helper.globalAjaxRequestAsync('{{route('process.ajax')}}','POST',{action:'SUBSCRIPTION_SMART_CREDIT',id:null, _token:"{{ csrf_token() }}"},subscriptioncallbackfunction);
}
const subscriptioncallbackfunction = (result)=>{
if(result.status)
{
$('#confirmation_modal_subscription').modal('hide');
Swal.fire({icon: result.type,title: result.message,width: 450,timer: 5000});
window.location.href='{{route('manage.clients')}}';
}else{
$('#confirmation_modal_subscription').modal('hide');
Swal.fire({icon: result.type,title: result.message,width: 450,timer: 5000});
}
}
const payment_form_submit =(e)=>{
common_helper.formValidate('#payment-report_form',
{'card_number': 'required', 'expiry': 'required', 'cvv': 'required'},
{
'card_number': {required: "Please enter your card number"},
'expiry': {required: "Please enter expire date"},
'cvv': {required: "Please enter your card code"}
}
);
if($('#payment-report_form').valid()) {
$('#payment-report_form').submit();
}
}
const expiryCard = () =>{
let data = $("#expiry").val();
if ( data.length === 2){
$("#expiry").val(data + "/");
}
}
</script>
@endpush

View File

@@ -0,0 +1,71 @@
<div id="training-video-modal" class="modal fade" role="dialog" style="padding-top: 50px">
<div class="modal-dialog modal-dialog-centered">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Add Training Video</h4>
</div>
<div class="modal-body">
<div class="container-fluid py-3">
<div class="row">
<div class="col-12 col-sm-8 col-md-6 col-lg-12 mx-auto">
<div class="card-body">
<form action="{{route('create.video')}}" method="post" id="training-video-form" class="needs-validation" >
@csrf
<div class="form-row">
<div class="form-group col-md-12">
<label>Section</label>
<select name="section_id"
class="form-control" >
<option value="0">---Select Section---</option>
@foreach (getSection() as $name => $value)
<option value="{{$name}}">{{$value}}</option>
@endforeach
</select>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12">
<label>Link</label>
<input id="link" name="link" type="text" placeholder="Video Link" class="form-control link" autocomplete="off" >
</div>
</div>
<div class="form-row">
<div class="form-group col-md-12 text-left">
<label class="lbl-dest check-btn"><input type="checkbox" name="status" value="1" checked class="check-equ2">
IsActive<span class="cr"></span></label>
</div>
</div>
<div class="form-row">
<div class="form-group pull-right">
<button id="submit-button" type="submit" class="btn btn-md btn-info" >
<i class="fa fa-save fa-lg"></i>&nbsp;
<span>Save</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,84 @@
@php
$identity_file = "";
$ssn_file = "";
$state_file = "";
$other_doc_file = "";
@endphp
@if (!empty($upload_medias))
@foreach ($upload_medias as $upload_media)
@if ($upload_media->image_type_id == config('constant.IDENTIFICATION_IMAGE_ID'))
@php $identity_file = config('constant.UPLOAD_MEDIA_PATH') . DIRECTORY_SEPARATOR.$upload_media->user_id . DIRECTORY_SEPARATOR . $upload_media->image_path @endphp
@endif
@if ($upload_media->image_type_id == config('constant.SSN_IMAGE_ID'))
@php $ssn_file = config('constant.UPLOAD_MEDIA_PATH') . DIRECTORY_SEPARATOR.$upload_media->user_id . DIRECTORY_SEPARATOR . $upload_media->image_path @endphp
@endif
@if ($upload_media->image_type_id == config('constant.STATE_PHOTO_IMAGE_ID'))
@php $state_file = config('constant.UPLOAD_MEDIA_PATH') . DIRECTORY_SEPARATOR.$upload_media->user_id . DIRECTORY_SEPARATOR . $upload_media->image_path @endphp
@endif
@if ($upload_media->image_type_id == config('constant.MAIL_DOC_IMAGE_ID'))
@php $other_doc_file = config('constant.UPLOAD_MEDIA_PATH') . DIRECTORY_SEPARATOR.$upload_media->user_id . DIRECTORY_SEPARATOR . $upload_media->image_path @endphp
@endif
@endforeach
@endif
<div class="col-md-6 ">
<label class="lbl-file">Please upload document Proof of PHOTO IDENTIFICATION (ie
Drivers License or State Identification Card)</label>
@include('partials.file_size_label')
<input id="identity_proof_file" type="file" onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})" class="form-control"
name="uploadmedia[identification]"
accept="image/jpeg,image/gif,image/png,image/x-eps">
@if(!empty($identity_file))
<div class="text-center">
<img src="{{getPublicFile($identity_file)}}"
class="img-client"><br>
</div>
@endif
</div>
<div class="col-md-6 ">
<label class="lbl-file">Please upload document Proof of legal Identification
number(s) or document proof current legally acquired Social Security Number
(ie SSN CARD, first page of tax form, passport , green card, etc. )</label>
@include('partials.file_size_label')
<input id="ssn_proof_file" type="file" class="form-control"
name="uploadmedia[ssn]"
onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"
accept="image/jpeg,image/gif,image/png,image/x-eps">
@if(!empty($ssn_file))
<div class="text-center">
<img src="{{getPublicFile($ssn_file)}}"
class="img-client"><br>
</div>
@endif
</div>
<div class="col-md-6 ">
<label class="lbl-file">Please upload document proof of address's street number,
street name, City and State/Province/Etc. (such as a current Utility Bill or
First page of a Banking statement</label>
@include('partials.file_size_label')
<input id="address_proof_file" type="file" class="form-control"
name="uploadmedia[state_photo_id]"
onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"
accept="image/jpeg,image/gif,image/png,image/x-eps">
@if(!empty($state_file))
<div class="text-center">
<img src="{{getPublicFile($state_file)}}"
class="img-client"><br>
</div>
@endif
</div>
<div class="col-md-6 ">
<label class="lbl-file">Other Document Upload</label>
@include('partials.file_size_label')
<input id="other_file" type="file" class="form-control"
name="uploadmedia[mail_doc]"
onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"
accept="image/jpeg,image/gif,image/png,image/x-eps">
@if(!empty($other_doc_file))
<div class="text-center">
<img src="{{getPublicFile($other_doc_file)}}"
class="img-client"><br>
</div>
@endif
</div>

View File

@@ -0,0 +1,119 @@
@php
$identity_file = "";
$ssn_file = "";
$state_file = "";
$other_doc_file = "";
$path = '';
$path_ssn ='';
$path_state = '';
$path_other = '';
@endphp
@if (!empty($upload_medias))
@foreach ($upload_medias as $upload_media)
@if ($upload_media->image_type_id == config('constant.IDENTIFICATION_IMAGE_ID'))
@php
$identity_file = config('constant.UPLOAD_MEDIA_PATH') . DIRECTORY_SEPARATOR.$upload_media->user_id . DIRECTORY_SEPARATOR . $upload_media->image_path ;
$path = getPublicFile($identity_file) ;
$identity_file_model = $upload_media;
@endphp
@endif
@if ($upload_media->image_type_id == config('constant.SSN_IMAGE_ID'))
@php
$ssn_file = config('constant.UPLOAD_MEDIA_PATH') . DIRECTORY_SEPARATOR.$upload_media->user_id . DIRECTORY_SEPARATOR . $upload_media->image_path ;
$path_ssn = getPublicFile($ssn_file);
$ssn_file_model = $upload_media;
@endphp
@endif
@if ($upload_media->image_type_id == config('constant.STATE_PHOTO_IMAGE_ID'))
@php
$state_file = config('constant.UPLOAD_MEDIA_PATH') . DIRECTORY_SEPARATOR.$upload_media->user_id . DIRECTORY_SEPARATOR . $upload_media->image_path;
$path_state = getPublicFile($state_file) ;
$state_file_model = $upload_media;
@endphp
@endif
@if ($upload_media->image_type_id == config('constant.MAIL_DOC_IMAGE_ID'))
@php
$other_doc_file = config('constant.UPLOAD_MEDIA_PATH') . DIRECTORY_SEPARATOR.$upload_media->user_id . DIRECTORY_SEPARATOR . $upload_media->image_path ;
$path_other = getPublicFile($other_doc_file) ;
$other_doc_file_model = $upload_media;
@endphp
@endif
@endforeach
@endif
<div class="row">
<div class="col-md-6 ">
<label class="lbl-file">Please upload document Proof of PHOTO IDENTIFICATION (ie
Drivers License or State Identification Card)</label>
<button type="button" class="btn btn-info btn-xs" id="identity_proof_file_btn" onclick="file_upload(`Drivers License or State Identification Card`,`{{addslashes($path) }}`,`{{config('constant.IDENTIFICATION_IMAGE_ID')}}`,`uploadmedia[identification]`)"> Upload </button>
{{-- @include('partials.file_size_label')--}}
{{-- <input id="identity_proof_file" type="file" onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})" class="form-control"--}}
{{-- name="uploadmedia[identification]"--}}
{{-- accept="image/jpeg,image/gif,image/png,image/x-eps">--}}
@if(!empty($identity_file))
<button type="button" class="btn btn-danger btn-xs" onclick="file_delete(`Drivers License or State Identification Card`,`{{$identity_file_model}}`)"> Delete </button>
<div class="text-center" id="identity_proof_doc_id">
<img src="{{getPublicFile($identity_file)}}"
class="img-client"><br>
</div>
@endif
</div>
<div class="col-md-6 ">
<label class="lbl-file">Please upload document Proof of legal Identification
number(s) or document proof current legally acquired Social Security Number
(ie SSN CARD, first page of tax form, passport , green card, etc. )</label>
{{-- @include('partials.file_size_label')--}}
{{-- <input id="ssn_proof_file" type="file" class="form-control"--}}
{{-- name="uploadmedia[ssn]"--}}
{{-- onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"--}}
{{-- accept="image/jpeg,image/gif,image/png,image/x-eps">--}}
<button type="button" class="btn btn-info btn-xs" onclick="file_upload(`SSN CARD, first page of tax form, passport , green card, etc.`,`{{addslashes($path_ssn) }}`,`{{config('constant.SSN_IMAGE_ID')}}`,`uploadmedia[ssn]`)"> Upload </button>
@if(!empty($ssn_file))
<button type="button" class="btn btn-danger btn-xs" onclick="file_delete(`SSN CARD, first page of tax form, passport , green card, etc.`,`{{ $ssn_file_model }}`)"> Delete </button>
<div class="text-center" id="ssn_doc_id">
<img src="{{getPublicFile($ssn_file)}}"
class="img-client"><br>
</div>
@endif
</div>
</div>
<div class="row" style="margin-top: 10px">
<div class="col-md-6 ">
<label class="lbl-file">Please upload document proof of address's street number,
street name, City and State/Province/Etc. (such as a current Utility Bill or
First page of a Banking statement</label>
{{-- @include('partials.file_size_label')--}}
{{-- <input id="address_proof_file" type="file" class="form-control"--}}
{{-- name="uploadmedia[state_photo_id]"--}}
{{-- onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"--}}
{{-- accept="image/jpeg,image/gif,image/png,image/x-eps">--}}
<button type="button" class="btn btn-info btn-xs" onclick="file_upload(`Current Utility Bill or First page of a Banking statement`,`{{addslashes($path_state) }}`,`{{config('constant.STATE_PHOTO_IMAGE_ID')}}`,`uploadmedia[state_photo_id]`)"> Upload </button>
@if(!empty($state_file))
<button type="button" class="btn btn-danger btn-xs" onclick="file_delete(`Current Utility Bill or First page of a Banking statement`,`{{$state_file_model }}`)"> Delete </button>
<div class="text-center" id="state_doc_id">
<img src="{{getPublicFile($state_file)}}"
class="img-client"><br>
</div>
@endif
</div>
<div class="col-md-6">
<label class="lbl-file">Other Document Upload</label>
<button type="button" class="btn btn-info btn-xs" onclick="file_upload(`Other Document Upload`,`{{addslashes($path_other) }}`,`{{config('constant.MAIL_DOC_IMAGE_ID')}}`,`uploadmedia[mail_doc]`)"> Upload </button>
{{-- @include('partials.file_size_label')--}}
{{-- <input id="other_file" type="file" class="form-control"--}}
{{-- name="uploadmedia[mail_doc]"--}}
{{-- onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"--}}
{{-- accept="image/jpeg,image/gif,image/png,image/x-eps">--}}
@if(!empty($other_doc_file))
<button type="button" class="btn btn-danger btn-xs" onclick="file_delete(`Other Document Upload`,`{{ $other_doc_file_model }}`)"> Delete </button>
<div class="text-center" id="other_doc_id">
<img src="{{getPublicFile($other_doc_file)}}"
class="img-client"><br>
</div>
@endif
</div>
</div>

View File

@@ -0,0 +1,29 @@
<div class="x_content">
<fieldset>
<legend class="label-text">Identity Question's Answer<br></legend>
<div class="row">
@foreach($question_answers as $question_answer)
<div class="col-md-6 col-xs-12">
<div class="form-group">
<label for="ques1"> {{$question_answer['question']}}</label>
<div class="input-group" id="show_hide_answer1">
<input class="form-control" disabled name="answer1"
type="password"
value="{{ $question_answer['answer']}}" id="ans1">
<div class="input-group-addon">
<a href=""><i class="fa fa-eye-slash" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
@endforeach
</div>
</fieldset>
</div>

View File

@@ -0,0 +1,22 @@
@php
$training_video_link = getCache('training_video_link');
@endphp
@if(!empty($training_video_link))
@foreach($training_video_link as $key=>$link)
<a href="{{$link}}" id="popup_youtube" class="{{$cssClass??''}}" title="Training Video" >
<img style="position: relative;top:0px;" width="55" class="pull-right" src="{{asset('images/watch_now.jpg')}}" alt=""/>
</a>
@break;
@endforeach
<li class="{{$cssClass??''}}" style="font-size: large;">
<a href="{{route('training_video.index')}}">
<span>Software Training</span>
</a>
</li>
@endif