@extends('adminlayout.mobile_sidebar') @section('content')
@if(Session::has('message'))

{{ Session::get('message') }}

@endif @if($errors->any())

{{ implode('', $errors->all(':message')) }}

@endif
{{ $data->service_details->name ?? '' }}

Commission is disbursed on professional fee and not at price.

{{--

Basic info, like service name, documents and features.

--}}
Service Name {{ $data->name }}
@if($data->return_file=='' || $data->return_file==null)
Price {{ $data->price }} Rs
@endif
Government Fee {{ $data->government_fee }} Rs
@if(Auth::user()->hasRole('suvidha_kendra'))
Cashback {{ $data->sk_commission . ' ' . $data->commission_type }}
@endif @if(Auth::user()->hasRole('user') && $data->u_commission > 0)
Cashback {{ $data->u_commission . ' ' . $data->commission_type }}
@endif
Documents {{ $data->documents }}
Training Video View {{-- @foreach ($arr as $item) @php $videourl = $item @endphp @endforeach --}}
Features

{{ $data->features }}

@if($data->pdf1 || $data->pdf2 || $data->pdf3)
PDF Information
@endif
@if($data->pdf1)
PDF1
@endif @if($data->pdf2)
PDF2
@endif @if($data->pdf3)
PDF3
@endif
@endsection