@if ($row->appointmentTransaction && $row->appointmentTransaction->type == App\Models\Appointment::MANUALLY)
@endif
@if ($row->appointmentTransaction && $row->appointmentTransaction->type == App\Models\Appointment::APPROVED)
{{__('messages.appointment.paid') . ' ' . $row->paid_amount}}
@elseif ($row->appointmentTransaction && $row->appointmentTransaction->type == App\Models\Appointment::REJECT)
{{ __('messages.affiliation.rejected') }}
@elseif($row->appointment_tran_id && $row->appointmentTransaction && $row->appointmentTransaction->type != App\Models\Appointment::MANUALLY)
{{ __('messages.appointment.paid') . ' ' . $row->paid_amount}}
@endif
@if(!$row->appointment_tran_id)
{{ __('messages.appointment.free') }}
@endif