@extends('layouts.shop') @section('style') @endsection @section('main')
@if ($order)
@if ($order->status == \App\Enums\OrderStatusEnum::PAID)

您已成功付款

@else

您还未付款

@endif
付款金额

{{ $order->amount }}

收货人

{{ $order->consignee_name }}

联系电话

{{ $order->consignee_phone }}

收货地址

{{ $order->consignee_address }}

请认真核对您的收货信息,如有错误请联系客服
@else

支付失败

请稍后刷新再次尝试...
@endif

商品推荐

查看所有
@foreach ($latestProducts as $latestProduct)
收藏人数 {{ $latestProduct->users_count }}

{{ $latestProduct->name }}

{!! $latestProduct->title !!}

{{ $latestProduct->original_price }} ¥ {{ $latestProduct->price }}

@endforeach
@endsection