Merge pull request #310 from cuneytsenturk/1.2-dev
App store app price style change
This commit is contained in:
commit
4bc8cc5863
@ -320,6 +320,7 @@ trait Modules
|
|||||||
'Authorization' => 'Bearer ' . setting('general.api_token'),
|
'Authorization' => 'Bearer ' . setting('general.api_token'),
|
||||||
'Accept' => 'application/json',
|
'Accept' => 'application/json',
|
||||||
'Referer' => env('APP_URL'),
|
'Referer' => env('APP_URL'),
|
||||||
|
'Akaunting' => version('short'),
|
||||||
];
|
];
|
||||||
|
|
||||||
$data['http_errors'] = false;
|
$data['http_errors'] = false;
|
||||||
|
@ -59,20 +59,15 @@
|
|||||||
|
|
||||||
<div class="box box-success">
|
<div class="box box-success">
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
<table class="table table-striped">
|
<div class="text-center">
|
||||||
<tbody>
|
<div style="margin: 10px; font-size: 24px;">
|
||||||
<tr>
|
@if ($module->price == '0.0000')
|
||||||
<th>Price</th>
|
{{ trans('modules.free') }}
|
||||||
<td class="text-right">
|
@else
|
||||||
@if ($module->price == '0.0000')
|
{{ $module->price }}
|
||||||
{{ trans('modules.free') }}
|
@endif
|
||||||
@else
|
</div>
|
||||||
{{ $module->price . ' / month' }}
|
</div>
|
||||||
@endif
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
<!-- /.box-body -->
|
<!-- /.box-body -->
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
@if ($module->price == '0.0000')
|
@if ($module->price == '0.0000')
|
||||||
{{ trans('modules.free') }}
|
{{ trans('modules.free') }}
|
||||||
@else
|
@else
|
||||||
{{ $module->price . ' / month' }}
|
{{ $module->price }}
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user