
<table class="table table-bordered table-striped">
	<tr>
		<th><?php echo trans('installments.receipt_id'); ?></th>
		<td><?php echo $receipt->receipt_id; ?></td>
	</tr>
	<tr>
		<th><?php echo trans('installments.payment_date'); ?></th>
		<td><?php echo dt_format($receipt->fee_date); ?></td>
	</tr>
	<tr>
		<th><?php echo trans('installments.payment_name'); ?></th>
		<td><?php echo $receipt->payment_name; ?></td>
	</tr>
	<tr>
	<tr>
		<th><?php echo trans('installments.amount'); ?></th>
		<td><?php echo money($receipt->total_amount); ?></td>
	</tr>
	<tr>
		<th><?php echo trans('installments.recieve_amount'); ?></th>
		<td><?php echo money($receipt->recieve_amount); ?></td>
	</tr>
	<?php if($receipt->late_day > 0): ?>
	<tr>
		<th><?php echo trans('installments.day_late'); ?></th>
		<td><?php echo $receipt->late_day; ?></td>
	</tr>
	<?php endif; ?>
	<?php if($receipt->fee_late > 0): ?>
	<tr>
		<th><?php echo trans('installments.late'); ?></th>
		<td><?php echo money($receipt->fee_late); ?></td>
	</tr>
	<?php endif; ?>
	<tr>
		<th><?php echo trans('installments.reciever_name'); ?></th>
		<td><?php echo $receipt->first_name; ?> <?php echo $receipt->last_name; ?></td>
	</tr>
	<?php if($receipt->with_doc): ?>
	<tr>
		<th><?php echo trans('installments.with_doc'); ?></th>
		<td><?php echo $receipt->with_doc; ?></td>
	</tr>
	<?php endif; ?>
</table>