@extends('theme.master') @section('title', 'Checkout') @section('content') @include('admin.message') @php $cart_total = 0; @endphp

{{ __('frontstaticword.Choice') . __('frontstaticword.SubscriptionPlan') }}

@if( $cart )
{{-- {{ csrf_field() }} --}}
@if(Auth::User()->getUserSubscriptionPlan()) @else @endif
{{ __('frontstaticword.TextShopping') }}
    @if (Auth::User()->refferal && ($gsetting->user_referral['status'] == 1 || $gsetting->user_referral_subscript['status'] == 1 || $gsetting->user_referral_renew['status'] == 1))
  • 推薦人: {{ Auth::User()->refferal->referral_user->fname }}
  • @endif @if( $subscription )
  • {{ $subscription->name }}
    {{ $subscription->description }}
    @if( ! empty( $subscription->offer_price ) && ! empty( $subscription->price ) ) {{ gc_format_price( $subscription->price ) }} {{ gc_format_price( $subscription->offer_price ) }} @elseif( empty( $subscription->offer_price ) && ! empty( $subscription->price ) ) {{ gc_format_price( $subscription->price ) }} @elseif( ! empty( $subscription->offer_price ) && empty( $subscription->price ) ) {{ gc_format_price( $subscription->offer_price ) }} @endif
  • @endif
    @if( $selected_channels ) @foreach( $selected_channels as $channel )
  • {{ $channel['channel']->name }}
    {{ $channel['start'] }} - {{ $channel['expire'] }}
    {{ gc_format_price( $channel['cost'] ) }}
  • @endforeach @endif
@if( $coupon )
  • 優惠券
    @csrf
    -{{gc_format_price($disamount)}}
@endif @if( !$first_purchase )
  • 首購{{$first_purchase_days}}天訂閱方案免費
    -{{gc_format_price($disamount)}}
@endif
  • 總計
    {{ gc_format_price( $total_cost ) }}
@if(!$coupon && $first_purchase)
@csrf
@endif @if (!Auth::User()->refferal && $gsetting->user_referral['status'])
@csrf
@endif
@csrf
    @foreach( $payments as $payment ) @php $disabled = $checked = false; if( isset($AvailableSubscription->payment_method) ){ if( $AvailableSubscription->payment_method == $payment['id'] ){ $checked = true; }else{ $disabled = true; } } @endphp
  • @endforeach
@include('front.invoice')

特別提醒

1.如首次體驗或使用活動優惠碼用戶,享免費使用頻道及無限觀看課程。

2.其提供優惠天數(註1)到期後,將依您所選擇的訂閱方案及付款方式,進行付費續訂

3.免費體驗期間可隨時取消,詳情請見官網「常見問題」。

*註1:優惠天數依活動說明為準。

@else

購物車內沒有任何商品,無法進行結帳

@endif
@endsection @section('custom-script') @endsection