@extends('web.profile.profile-master') @section('promot-content')

{{ __('Promote Ads') }}

@foreach ($boostPlans as $boostPlan)
{{ $boostPlan->sustain_days }} {{ __('Days') }}

{{ $boostPlan->name }}

{{ $boostPlan->description ?? 'N/A' }}

@if (!empty($boostPlan->plan_items)) @php $items = is_array($boostPlan->plan_items) ? $boostPlan->plan_items : json_decode($boostPlan->plan_items, true); @endphp @if (!empty($items))
    @foreach ($items as $value)
  • {{ $value }}
  • @endforeach
@endif @endif
@if (!empty($boostPlan->discount_amount) && $boostPlan->discount_amount > 0) {{-- Discount Price --}} ${{ number_format($boostPlan->discount_amount, 2) }} {{-- Old Price --}} ${{ number_format($boostPlan->payable_amount, 2) }} @else {{-- Normal Price --}} ${{ number_format($boostPlan->payable_amount, 2) }} @endif
{{ __('Promote') }}
@endforeach
@endsection