File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/ff827f643d01bc3212bfaec478f41003
<div class="entity-attribute entity-attribute"> <table width="100%" class="order-table"> <tr> <th width="65px">Bestel nr</th> <th width="60px">Klant nr</th> <th width="90px">Status</th> <th width="90px">Betaalmethode</th> <th>Email</th> <th>Naam</th> <th>Bedrijf</th> <th>Straat + nr</th> <th>Gemeente</th> <th width="60px">Postcode</th> <th width="35px">Land</th> <th width="90px">Totaal bedrag</th> <th width="130px">Besteld op</th> <th width="130px">Aangepast op</th> </tr> <?php foreach($orders as $one_order): ?> <tr class="order-row"> <td><?php echo HTML::link(URL::route('kms.orders.search.detail',['order'=>$one_order['id'],'#order']),$one_order['order_number']); ?></td> <td><?php echo isset($one_order['customer_number']) ? $one_order['customer_number'] : '-'; ?></td> <td><?php echo $one_order['status']; ?></td> <td><?php echo $one_order['payment_method']; ?></td> <td><?php echo $one_order['invoice_email']; ?></td> <td><?php echo $one_order['invoice_first_name']; ?> <?php echo $one_order['invoice_last_name']; ?> <?php echo $one_order['invoice_name_insertion']; ?></td> <td><?php echo isset($one_order['invoice_company']) ? $one_order['invoice_company'] : '/'; ?></td> <td><?php echo $one_order['invoice_street']; ?> <?php echo $one_order['invoice_house_number']; ?> - <?php echo $one_order['invoice_house_number_suffix']; ?></td> <td><?php echo $one_order['invoice_city']; ?></td> <td><?php echo $one_order['invoice_postal']; ?></td> <td><?php echo $one_order['invoice_country']; ?></td> <td> <?php echo Format::asPrice($one_order['price_total'], ['currency'=>'€ ']); ?> </td> <td><?php echo DateTime::createFromFormat('Y-m-d H:i:s', $one_order['ordered_at']) ? Carbon\Carbon::parse(helper_localize_date($one_order['ordered_at']))->format('d-m-Y H:i') : '-'; ?></td> <td><?php echo DateTime::createFromFormat('Y-m-d H:i:s', $one_order['updated_at']) ? Carbon\Carbon::parse(helper_localize_date($one_order['updated_at']))->format('d-m-Y H:i') : '-'; ?></td> </tr> <?php endforeach; ?> </table> </div>