@php use App\Models\Admin\Settings; @endphp @extends('layouts.frontlayout') @section('content')

Summary

Plan

{{ $membership->title }}
{{ $membership->currency }}{{ $membership->price }} @if($membership->days == 7) {{"/week"}} @elseif($membership->days == 30) {{"/Month"}} @else {{"/Year"}} @endif
@php $points = json_decode($membership->description, true); @endphp @foreach($points as $key => $value)

{!! $value !!}

@endforeach

Checkout

Payment Type

Payment Detail

  • Trial Subscription (1 Cycle/s)

    {{ price_format($membership->price) }}

  • Full Trial price:

    {{ price_format($membership->price) }}

  • Workout Diet App

    {{ price_format(20) }}

Price after trial period:

@php $workoutDietApp = Settings::get('workout_diet_app'); $total = $membership->price+$workoutDietApp; @endphp

{{ price_format($total) }}

@endsection