@extends('admin.layout.dashboard-template') @section('content')

{{$data->title}}

{{-- COMMISSION TYPE --}}
Commission Type

:

@if($data->commission_type == 'fixed')

Fixed Amount

@elseif($data->commission_type == 'percentage')

Percentage

@elseif($data->commission_type == 'contact')

Contact Helpdesk

@else

N/A

@endif
{{-- COMMISSION VALUE --}}
Commission Value

:

@if($data->commission_type == 'fixed')

₹ {{ $data->commission_value }}

@elseif($data->commission_type == 'percentage')

{{ $data->commission_value }} %

@elseif($data->commission_type == 'contact')
{{ $data->commission_value ?? 'Please contact helpdesk for commission details' }}
@endif
{{-- REFUND ELIGIBLE --}}
Refund Eligible

:

@if($data->refundable_eligible == 1) Eligible For Refund @else Non Refundable @endif
{{-- OLD COMMISSION --}}
Old Commission Amount

:

{{ $data->commission }}

{{-- PRODUCT CODE --}}
Product Code

:

{{ $data->code }}

{{-- APPLICATION THROUGH --}}
Application Through

:

{{ $data->apply_service_through }}

@if($data->apply_service_through == 'Link') @foreach($data->links as $item) Go to Lead Link   @endforeach @endif

@php $tl = count($data->tutorialLinks->toArray()); @endphp @if($tl > 0)

Tutorial Links


@foreach($data->tutorialLinks as $item) @endforeach @endif
{!! $data->description !!}
@endsection