deliverySuccess.blade.php 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="icon" href="{{asset('icon/faviconc.ico')}}" type="image/x-icon"/>
  7. <title>送货成功-入库预约</title>
  8. <link href="{{ mix('css/app.css') }}" rel="stylesheet">
  9. <style>
  10. .font{
  11. margin-top: 15%;
  12. font-size: 6em;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div class="container-fluid h-100 text-center">
  18. <div class="text-success h1 font w-100">
  19. <span class="fa fa-check-circle"></span>
  20. </div>
  21. <span class="h2 font-weight-bold">送货成功</span>
  22. <div class="mt-5">
  23. @foreach($cars as $car)
  24. <div class="w-100 mt-2">
  25. <span class="fa fa-circle text-info"></span>&nbsp;&nbsp;
  26. 待扫&nbsp;&nbsp;{{$car->license_plate_number}}
  27. </div>
  28. @endforeach
  29. </div>
  30. </div>
  31. </body>
  32. </html>