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

{{$data->service_name}}

  • Service Name

    : {{$data->service_name}}
  • Description

    :

{{ Str::limit((strip_tags($data->description)), 200, '...') }}

{!! $data->description !!}

Service Fee Structure

@foreach($data->serviceFeeStructure as $key=>$item) @endforeach
# Provider Category Call Method Duration Rate Add Package
{{$key+1}} {{$item->providerCategory->name}} {{$item->callMethod->name}} {{$item->duration}} ₹{{$item->rate}} @if($item->call_method_id==1) @else -- @endif
@if(count($data->package)>0)

Packages

@foreach($data->package as $item)
{{$item->discount}}%
{{$item->duration}}
{{$item->no_of_sessions}}

{{$item->title}}

{{ Str::limit((strip_tags($item->description)), 100, '...') }}

@endforeach
@endif

{{$data->service_name}} Appoinments

Name Consulting Doctor Charge Mobile Status Date Time
@endsection