@extends('layouts.app') @section('content') 课程信息 @foreach($order->details as $detail) {{ $detail->item->title }} ¥{{ $detail->item->price }} @endforeach 展开全部课程 报课信息 宝宝姓名: 宝宝年龄: 联系电话: 支付方式 微信支付 优惠活动 @if(!$coupon) 暂无 @endif @if($coupon) {{ $coupon->info->title }} @endif 课程金额 ¥{{ number_format($order->amount,2) }} @if($coupon) 优惠立减 -¥{{ $coupon->info->bouns }} @endif 总价:¥@if($coupon) {{ number_format($order->amount - $coupon->info->bouns,2) }} @else {{ $order->pay_total }} @endif 确认支付 @endsection @section('footer') @endsection @section('css') @endsection @section('js') @endsection @section('script') @endsection