@extends('admin.layout.dashboard-template')
@section('content')
-
Service
:
{{$data->service->service_name}}
-
| Provider Category |
Communication Methods |
Duration |
Rate |
@foreach ($fee as $item)
| {{ $item->providerCategory->name }} |
{{ $item->callMethod->name }} |
{{ $item->duration }} Minutes |
₹ {{ $item->rate }} |
@endforeach
-
Number of Sessions
:
{{$data->no_of_sessions}}
-
Duration
:
{{$data->duration}}
-
Discount
:
{{$data->discount}}%
-
Start Date
:
{{date("d l Y",strtotime($data->start_date))}}
-
End Date
:
{{date("d l Y",strtotime($data->end_date))}}
-
Start Time
:
{{$data->start_time}}
-
End Time
:
{{$data->end_time}}
-
Description
:
{{$data->description}}
@endsection