@extends('layouts.app') @section('content')
@foreach($order as $orderdetail)

Order Confirmed

your order is being processed. You're almost ready to put it to work.

@endforeach
@foreach($order as $orderdetail)
Thank you for your order!

We've emailed your receipt to {{$orderdetail->email}}

{{$orderdetail->radius_address}}

{{$orderdetail->productname}}
@if($orderdetail->newprice == '')
${{$orderdetail->price}}
@else
${{$orderdetail->newprice}}
@endif

{{$orderdetail->productname}}

{{$orderdetail->radius}}
@if($orderdetail->newprice == '')
${{$orderdetail->price}}
@else
${{$orderdetail->newprice}}
@endif

Total

@if($orderdetail->newprice == '')

${{$orderdetail->price}}

@else

${{$orderdetail->newprice}}

@endif
@endforeach
@endsection