{{ $row->user->name }}
{{ $row->package_name }}
@if($row->user->reseller_id) {{ config('app.currency') . __(' ') . ($row->reseller_price + $row->reseller_profit) }} @else {{ config('app.currency') . __(' ') . $row->user_price }} @endif
{{ date('Y-m-d', strtotime($row->created_at)) }}
{{ date('Y-m-d', strtotime($row->subscription_expires)) }}
@if($row->user_status === 1) {{ __('Active') }} @endif @if($row->user_status === 2) {{ __('Expired') }} @endif @if($row->user_status === 3) {{ __('Terminated') }} @endif
@if($row->payment_status === 1) {{ __('Paid') }} @endif @if($row->payment_status === 0) {{ __('Due') }} @endif
{{ $row->invoice }}
{{ $row->createdBy->name }}