37 lines
1.1 KiB
PHP
Raw Normal View History

2018-08-10 00:10:51 +10:00
<div class="col-md-12">
<p>{!! $o->description !!}</p>
2018-08-10 00:10:51 +10:00
</div>
<table class="table table-condensed">
<tr>
<th>Type</th>
2018-08-11 15:09:41 +10:00
<td class="text-right">{{ $o->product_type }}</td>
2018-08-10 00:10:51 +10:00
</tr>
<tr>
2018-08-11 15:09:41 +10:00
<th>Setup Charges <sup>*</sup></th>
<td class="text-right">${{ is_numeric($o->setup_cost) ? number_format($o->setup_cost,2) : $o->setup_cost }}</td>
2018-08-10 00:10:51 +10:00
</tr>
<tr>
2019-06-08 22:33:03 +10:00
<th>Cost <sup>+</sup></th>
2018-08-11 15:09:41 +10:00
<td class="text-right">${{ is_numeric($o->default_cost) ? number_format($o->default_cost,2) : $o->default_cost }}</td>
2018-08-10 00:10:51 +10:00
</tr>
<tr>
<th>Default Billing</th>
2018-08-11 15:09:41 +10:00
<td class="text-right">{{ is_numeric($o->default_billing) ? number_format($o->default_billing,2) : $o->default_billing }}</td>
2018-08-10 00:10:51 +10:00
</tr>
<tr>
<th>Contract Term</th>
2018-08-11 15:09:41 +10:00
<td class="text-right">{{ $o->contract_term }} mths</td>
2018-08-10 00:10:51 +10:00
</tr>
<tr>
2019-06-08 22:33:03 +10:00
<th>Minimum Costs <sup>+*</sup></th>
2018-08-11 15:09:41 +10:00
<td class="text-right">${{ is_numeric($o->minimum_cost) ? number_format($o->minimum_cost,2) : $o->minimum_cost }}</td>
2018-08-10 00:10:51 +10:00
</tr>
2018-08-11 15:09:41 +10:00
<tfoot>
2019-06-08 22:33:03 +10:00
<tr><td colspan="2"><sup>
* Additional setup charges may apply for complex installations.<br>
+ Additional charges may apply for regional installations.
</sup></td></tr>
2018-08-11 15:09:41 +10:00
</tfoot>
2018-08-10 00:10:51 +10:00
</table>