2018-08-09 14:10:51 +00:00
|
|
|
<div class="col-md-12">
|
2018-08-12 07:07:32 +00:00
|
|
|
<p>{!! $o->description !!}</p>
|
2018-08-09 14:10:51 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="table table-condensed">
|
|
|
|
<tr>
|
|
|
|
<th>Type</th>
|
2018-08-11 05:09:41 +00:00
|
|
|
<td class="text-right">{{ $o->product_type }}</td>
|
2018-08-09 14:10:51 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2018-08-11 05:09:41 +00: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-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>
|
2018-08-11 05:09:41 +00:00
|
|
|
<th>Minimum Costs <sup>*</sup></th>
|
|
|
|
<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>
|
2018-08-11 05:09:41 +00:00
|
|
|
|
|
|
|
<tfoot>
|
|
|
|
<tr><td colspan="2"><sup>* Additional setup charges may apply for complex installations.</sup></td></tr>
|
|
|
|
</tfoot>
|
2018-08-09 14:10:51 +00:00
|
|
|
</table>
|