osb/resources/theme/frontend/metronic/widgets/product/VOIP.blade.php

30 lines
902 B
PHP
Raw Normal View History

2018-08-09 14:10:51 +00:00
<div class="col-md-12">
<p>{!! $o->description !!}</p>
2018-08-09 14:10:51 +00:00
</div>
<table class="table table-condensed">
<tr>
<th>Type</th>
<td class="text-right">VOIP</td>
</tr>
<tr>
2018-08-11 05:09:41 +00:00
<th>Setup Charges</th>
<td class="text-right">${{ is_numeric($o->setup_cost) ? number_format($o->setup_cost,2) : $o->setup_cost }}</td>
2018-08-09 14:10:51 +00:00
</tr>
<tr>
2018-08-11 05:09:41 +00:00
<th>Cost</th>
<td class="text-right">${{ is_numeric($o->default_cost) ? number_format($o->default_cost,2) : $o->default_cost }}</td>
2018-08-09 14:10:51 +00:00
</tr>
<tr>
<th>Default Billing</th>
2018-08-11 05:09:41 +00:00
<td class="text-right">{{ is_numeric($o->default_billing) ? number_format($o->default_billing,2) : $o->default_billing }}</td>
2018-08-09 14:10:51 +00:00
</tr>
<tr>
<th>Contract Term</th>
2018-08-11 05:09:41 +00:00
<td class="text-right">{{ $o->contract_term }} mths</td>
2018-08-09 14:10:51 +00:00
</tr>
<tr>
<th>Minimum Costs</th>
2018-08-11 05:09:41 +00:00
<td class="text-right">${{ is_numeric($o->minimum_cost) ? number_format($o->minimum_cost,2) : $o->minimum_cost }}</td>
2018-08-09 14:10:51 +00:00
</tr>
</table>