| 123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="icon" href="{{asset('icon/faviconc.ico')}}" type="image/x-icon"/>
- <title>送货成功-入库预约</title>
- <link href="{{ mix('css/app.css') }}" rel="stylesheet">
- <style>
- .font{
- margin-top: 15%;
- font-size: 6em;
- }
- </style>
- </head>
- <body>
- <div class="container-fluid h-100 text-center">
- <div class="text-success h1 font w-100">
- <span class="fa fa-check-circle"></span>
- </div>
- <span class="h2 font-weight-bold">送货成功</span>
- <div class="mt-5">
- @foreach($cars as $car)
- <div class="w-100 mt-2">
- <span class="fa fa-circle text-info"></span>
- 待扫 {{$car->license_plate_number}}
- </div>
- @endforeach
- </div>
- </div>
- </body>
- </html>
|