you need to present the user with a choice of options?
convert the list into a form with radios
Hey all. I'm new to the Laravel universe and I'm putting the finishing touches on an ecommerce app. The final frontier now is getting the dynamic shipping rate, and adding it to my overall order total, but I'm at a loss as to how to do this. The rates are coming through a foreach loop like this
@foreach ($rates as $rate)
<tr>
<td>
<img src="{{ $rate->provider_image_75 }}" alt="">
{{ $rate->provider }} ({{ $rate->duration_terms }})
</td>
<td width="20%">
<input type="radio" class="pull-right" name="rate" value="{{ $rate->object_id }}">
${{ $rate->amount }}
</td>
</tr>
The $cartTotal comes from the bumbummen99 shopping cart? Any advice?
Please or to participate in this conversation.