56 lines
No EOL
1.4 KiB
PHP
56 lines
No EOL
1.4 KiB
PHP
<?php
|
|
//
|
|
// if (!Session::get('user_id') ) {
|
|
//
|
|
// dd(header('location: ' . url('') ));
|
|
// }
|
|
$menu = App\Menu::all()->toArray();
|
|
?>
|
|
|
|
|
|
<?php $__env->startSection('main_content'); ?>
|
|
|
|
<h2>Wait , Please Check your Info before the Check out</h2>
|
|
|
|
|
|
<table class="table table-striped table-dark">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">First Name</th>
|
|
<th scope="col">Last Name</th>
|
|
<th scope="col">Country</th>
|
|
<th scope="col">Address</th>
|
|
<th scope="col">ZIP</th>
|
|
<th scope="col">Phone</th>
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><?php echo e($user[0]->{'name'}); ?></td>
|
|
<td><?php echo e($user[0]->{'last_name'}); ?></td>
|
|
<td><?php echo e($user[0]->{'country'}); ?></td>
|
|
<td><?php echo e($user[0]->{'street'} .' '. $user[0]->{'streetNum'} .','. $user[0]->{'city'}); ?></td>
|
|
<td><?php echo e($user[0]->{'ZIP'}); ?></td>
|
|
<td><?php echo e($user[0]->{'phone'}); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href="<?php echo e(url('user') .'/' . 'profile'); ?>" class="btn btn-template">Wait, need to change somthing<i class="fa fa-angle-left"></a></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td><a href="<?php echo e(url('shop') .'/' . 'placeorder'); ?>" class="btn btn-template">All good<i class="fa fa-angle-right"></a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|