@extends('layouts.default') @section('title', 'Checkout') @section('content')

Subscription checkout

Enjoy all the amazing benefits of becoming a community member

Subscription Plan

      @php $features = ''; if (isset($package->features) && !empty($package->features)) { $features = json_decode($package->features); } @endphp @forelse ($features as $feature)
    • {{ $feature }}
    • @empty
    • No features available
    • @endforelse

Subscription Plan

{{ $package->name }} Payment amount

Total price

₦{{ number_format($package->price) }}

@if (Auth::user()->isTenant()) @else @if (isset($tenant_payment_setting)) @if ($tenant_payment_setting->payment_method == 'tribearc') @elseif($tenant_payment_setting->payment_method == 'flutterwave') @elseif($tenant_payment_setting->payment_method == 'paystack') @if (parentIsOnAPaidPackage(Auth::user()->creatorId())) @else @endif @else
No Payment method has been set, please contact admin support
@endif @else
No Payment method has been set, please contact admin support
@endif @endif
{{-- Pay with Flutterwave --}} {{-- Pay with Tribearc --}} {{-- Pay with Paystack --}} @endsection