index.blade.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. @extends('layouts.app')
  2. @section('title', '收货地址列表')
  3. @section('content')
  4. <div class="row">
  5. <div class="col-md-10 offset-md-1">
  6. <div class="card panel-default">
  7. <div class="card-header">收货地址列表</div>
  8. <div class="card-body">
  9. <table class="table table-bordered table-striped">
  10. <thead>
  11. <tr>
  12. <th>收货人</th>
  13. <th>地址</th>
  14. <th>邮编</th>
  15. <th>电话</th>
  16. <th>操作</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. @foreach($addresses as $address)
  21. <tr>
  22. <td>{{ $address->contact_name }}</td>
  23. <td>{{ $address->full_address }}</td>
  24. <td>{{ $address->zip }}</td>
  25. <td>{{ $address->contact_phone }}</td>
  26. <td>
  27. <button class="btn btn-primary">修改</button>
  28. <button class="btn btn-danger">删除</button>
  29. </td>
  30. </tr>
  31. @endforeach
  32. </tbody>
  33. </table>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. @endsection