@extends('adminlte::page') @section('title', $title) @section('content')
@php $selectedMonth = strtolower($response_arr['month'] ?? ''); $selectedYear = $response_arr['year'] ?? ''; @endphp

Fill Potential

    @foreach ($response_arr['monthList'] as $item) @php $month = strtolower($item['month']); $year = $item['year']; $isActive = $month === $selectedMonth && $year == $selectedYear ? 'active' : ''; @endphp
  • {{ ucfirst($month) }}

    {{ $year }}
  • @endforeach

Name : {{ $doctorInfo['doctorName'] }}

Specialilty : {{ $doctorInfo['speciallityName'] }}

MSL No. : {{ $doctorInfo['mslNo'] }}

{{ $doctorInfo['email'] }}

{{ $doctorInfo['contactNo'] }}

{{ ucfirst($selectedMonth) . '-' . $selectedYear . ' Support' }}

@foreach ($response_arr['supportList'] as $support) @endforeach
Product Potential (Rx/Week) Support (Rxn/Week)
{{ $support['product'] . ' (' . number_format($support['productPrice'], 2) . ')' }} {{ $support['rxValue'] }}
@stop @section('adminlte_js') {{-- --}} @stop