@extends('layouts.app') @section('content')
| # | {{ __('Plan Name') }} | {{ __('Payable Amount') }} | {{ __('Discount') }} | {{ __('Sustain Days') }} | {{ __('Selling Post ID') }} | {{ __('Expired At') }} | {{ __('Status') }} |
|---|---|---|---|---|---|---|---|
| {{ $sold->id }} | {{ $sold->boostPlan?->name ?? 'N/A' }} | {{ currencyFormat($sold->boostPlan?->payable_amount) ?? 0 }} | {{ currencyFormat($sold->boostPlan?->discount_amount) ?? 0 }} | {{ $sold->boostPlan?->sustain_days ?? 0 }} | {{ $sold?->selling_post_id }} | {{ $sold?->expired_at }} | @if ($sold->expired_at > now()) {{ __('Active') }} @else {{ __('Expired') }} @endif |
| {{ __('No plans found.') }} | |||||||