Add New Pre Order Product
@foreach ($package->otherProducts as $op) @endforeach
Product Detail Description Options
@if(isTrue($op->has_option)) @endif
{{ $op->product_name }}
Is Included: {!! yesNo($op->is_free) !!}
Price: {{ 'AUD $' . numberFormat($op->price) }}
Quantity Limit: {{ $op->quantity_limit }}
Has Option: {!! yesNo($op->has_option) !!}
Use Option Price: {!! yesNo($op->use_option_price) !!}
Postage Fee:
National: AUD ${!! $op->national_postage_fee !!}
International: AUD ${!! $op->international_postage_fee !!}
Sort: {{ $op->sort }}
Status: {!! statusHtml($op->status) !!}
Show In Collection: {!! yesNo($op->collection_show) !!}
Edit Product   


Copy
{!! $op->description !!} @if(!isTrue($op->has_option)) ---- @else Add Option @if($op->otherProductOptions()->count() > 0) @foreach ($op->otherProductOptions as $opo) @endforeach @else @endif
Name Old Price Sale Price Postage Fee Sort Status Action(s)
{{ $opo->name }} {{ 'AUD $' . numberFormat(isTrue($op->use_option_price) ? $opo->old_price : 0) }} {{ 'AUD $' . numberFormat(isTrue($op->use_option_price) ? $opo->sale_price : 0) }} National: AUD ${!! $opo->national_postage_fee !!}
International: AUD ${!! $opo->international_postage_fee !!}
{{ $opo->sort }} {!! statusHtml($opo->status) !!}   
No Data Available!!
@endif