convert recieptpdf
This commit is contained in:
@ -84,10 +84,10 @@
|
||||
@foreach($checkout_list_results as $checkout_list_result)
|
||||
<tr>
|
||||
<td>
|
||||
{{ $checkout_list_result->items_rel->first()->item_assigned_num }}
|
||||
{{ $checkout_list_result->item_assigned_num }}
|
||||
</td>
|
||||
<td>
|
||||
{{ $checkout_list_result->items_rel->first()->item_desc }}
|
||||
{{ $checkout_list_result->item_desc }}
|
||||
</td>
|
||||
<td>
|
||||
${{ $checkout_list_result->winning_cost }}
|
||||
@ -108,19 +108,21 @@
|
||||
</h4>
|
||||
</th>
|
||||
<th>
|
||||
@if($checkout_final_results->payment_method==1)
|
||||
@foreach($checkout_final_results as $checkout_final_result)
|
||||
@if($checkout_final_result->payment_method==1)
|
||||
<h4>
|
||||
CASH
|
||||
</h4>
|
||||
@elseif($checkout_final_results->payment_method==2)
|
||||
@elseif($checkout_final_result->payment_method==2)
|
||||
<h4>
|
||||
CHECK Number {{ $checkout_final_results->check_number }}
|
||||
CHECK Number {{ $checkout_final_result->check_number }}
|
||||
</h4>
|
||||
@else
|
||||
<h4>
|
||||
CREDIT {{ $checkout_final_results->cc_transaction }}
|
||||
CREDIT {{ $checkout_final_result->cc_transaction }}
|
||||
</h4>
|
||||
@endif
|
||||
@endforeach
|
||||
</th>
|
||||
</tr>
|
||||
</table>
|
||||
@ -179,13 +181,13 @@
|
||||
@foreach($checkout_list_results as $checkout_list_result)
|
||||
<tr>
|
||||
<td>
|
||||
{{ $checkout_list_result->items_rel->first()->item_assigned_num }}
|
||||
{{ $checkout_list_result->item_assigned_num }}
|
||||
</td>
|
||||
<td>
|
||||
{{ $checkout_list_result->items_rel->first()->item_desc }}
|
||||
{{ $checkout_list_result->item_desc }}
|
||||
</td>
|
||||
<td>
|
||||
${{ $checkout_list_result->items->winning_cost }}
|
||||
${{ $checkout_list_result->winning_cost }}
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
|
Reference in New Issue
Block a user