@extends('theme.master') @section('title', 'Checkout') @section('content') @include('admin.message') {{ __('frontstaticword.Choice') . __('frontstaticword.PlusChannel') }} {{-- 您還可以加購訂閱會員專屬的加值頻道,頻道上所顯示的價格為每個月的訂閱費用,其訂閱期間將隨著訂閱方案動態調整。 例如您訂閱方案為三個月一期,那麼加值頻道的費用亦同步調整為三個月的費用。 --}} @if( $plus_channels ) {{ csrf_field() }} @foreach( $plus_channels as $plus_channel ) @php $disabled = $purchased_text = ''; if( in_array( $plus_channel->id, $purchased_channel_ids ) ){ $disabled = 'disabled'; $purchased_text = '(已加購)'; } $channel_image = ''; if( $plus_channel->image ){ // $images = json_decode( $plus_channel->image, true ); $channel_image = gc_asset( 'images/pluschannel/' . $plus_channel->imag ); } $checked = ''; if( in_array( $plus_channel->id, $selected_channels ) ){ $checked = 'checked'; } @endphp {{ $plus_channel->name }} {{ $purchased_text }} 加值專屬線上課程 @if( ! empty( $plus_channel->offer_price ) && ! empty( $plus_channel->price ) ) {{ gc_format_price( $plus_channel->price ) }} {{ gc_format_price( $plus_channel->offer_price ) }} @elseif( empty( $plus_channel->offer_price ) && ! empty( $plus_channel->price ) ) {{ gc_format_price( $plus_channel->price ) }} @elseif( ! empty( $plus_channel->offer_price ) && empty( $plus_channel->price ) ) {{ gc_format_price( $plus_channel->offer_price ) }} @endif /月 @endforeach @else 購物車內沒有任何商品,無法進行結帳 @endif @endsection @section('custom-script') @endsection
您還可以加購訂閱會員專屬的加值頻道,頻道上所顯示的價格為每個月的訂閱費用,其訂閱期間將隨著訂閱方案動態調整。 例如您訂閱方案為三個月一期,那麼加值頻道的費用亦同步調整為三個月的費用。
購物車內沒有任何商品,無法進行結帳