@extends('admin.layouts.app') @section('page_tab_title' ,"Practitioners") @section('content') Edit practitioner details @csrf Practitioner Name Practitioner email address Last login date Number of last 30 day appointment Number of next 30 day appointment do not disturb dnd == 'yes') checked @endif> Next followup date Followup description {{$practitioner_details->followup_description}} Follow up1 + 7 day trial_7_day_flag == 'yes') disabled checked @endif>@if($practitioner_details->followup_7_day != NULL){{date("d/m/Y", strtotime($practitioner_details->followup_7_day))}}@endif Follow up2 + 3 day before trial_27_day_flag == 'yes') disabled checked @endif>@if($practitioner_details->followup_27_day != NULL){{date("d/m/Y", strtotime($practitioner_details->followup_27_day))}}@endif Follow up3 + next 45 day end_trial_45_day_flag == 'yes') disabled checked @endif>@if($practitioner_details->followup_45_day != NULL){{date("d/m/Y", strtotime($practitioner_details->followup_45_day))}}@endif Follow up3 + next 100 day end_trial_100_day_flag == 'yes') disabled checked @endif>@if($practitioner_details->followup_100_day != NULL){{date("d/m/Y", strtotime($practitioner_details->followup_100_day))}}@endif Submit @if(base64_decode(Request::get('flag')) == '7_day') Cancel @elseif(base64_decode(Request::get('flag')) == '27_day') Cancel @elseif(base64_decode(Request::get('flag')) == '45_day') Cancel @elseif(base64_decode(Request::get('flag')) == '100_day') Cancel @elseif(base64_decode(Request::get('flag')) == 'followup_date') Cancel @else Cancel @endif @endsection