Text changes
This commit is contained in:
parent
6662950e51
commit
1f29dcd7ed
2 changed files with 10 additions and 4 deletions
|
|
@ -417,8 +417,10 @@ class PaymentController extends \BaseController
|
|||
$license->affiliate_id = Session::get('affiliate_id');
|
||||
$license->save();
|
||||
|
||||
$affiliate = Affiliate::find(Session::get('affiliate_id'));
|
||||
|
||||
$data = [
|
||||
'message' => $affiliate->payment_subtitle,
|
||||
'license' => $licenseKey,
|
||||
'hideHeader' => true
|
||||
];
|
||||
|
|
@ -443,8 +445,11 @@ class PaymentController extends \BaseController
|
|||
|
||||
if ($license)
|
||||
{
|
||||
$license->is_claimed = true;
|
||||
$license->save();
|
||||
if ($license->transaction_reference != 'TEST_MODE')
|
||||
{
|
||||
$license->is_claimed = true;
|
||||
$license->save();
|
||||
}
|
||||
|
||||
return 'valid';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,13 +12,15 @@
|
|||
</div>
|
||||
</section>
|
||||
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
|
||||
<section class="faq">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<h3 style="text-align:center">{{ $message }}</h3>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<h2 style="text-align:center">{{ $license }}</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -26,7 +28,6 @@
|
|||
</section>
|
||||
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
|
||||
|
||||
@stop
|
||||
Loading…
Add table
Reference in a new issue