@extends('layouts.master') @section('title', 'Create Op Follow up | Proxima - Medical Management app') @section('title-topbar', 'Op Follow up') @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

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

@endif @endsection @section('content')
{{ __('basic.dashboard') }} | Op Follow up | {{ __('basic.new op follow up') }}
{{ __('basic.new op follow up') }}
{{ method_field('PUT') }} @csrf

{{ date('h:i a Y-m-d', strtotime($op->start_at)) }}

{{ $op->service_item->name }}

Op place: {{ $op->place->name }} @isset($op->doctor->first_name) with docotr {{ $op->doctor->first_name }} @endisset

Patient

{{ $op->patient->first_name . ' ' . $op->patient->second_name }}

{{ $op->follow_up->doctor->first_name . ' ' . $op->follow_up->doctor->second_name }}

@if ($op->follow_up->day_1) {{ date('d M Y', strtotime($op->follow_up->day_1)) }} @endif
@if ($op->follow_up->day_3) {{ date('d M Y', strtotime($op->follow_up->day_3)) }} @endif
follow_up->day_3) checked @endif type="checkbox" value="{{ date('Y-m-d') }}" id="day3">
@if ($op->follow_up->week_1) {{ date('d M Y', strtotime($op->follow_up->week_1)) }} @endif
follow_up->week_1) checked @endif type="checkbox" value="{{ date('Y-m-d') }}" id="week_1">
@if ($op->follow_up->week_2) {{ date('d M Y', strtotime($op->follow_up->week_2)) }} @endif
follow_up->week_2) checked @endif type="checkbox" value="{{ date('Y-m-d') }}" id="week_2">
@if ($op->follow_up->month_1) {{ date('d M Y', strtotime($op->follow_up->month_1)) }} @endif
follow_up->month_1) checked @endif type="checkbox" value="{{ date('Y-m-d') }}" id="month_1">
@if ($op->follow_up->month_2) {{ date('d M Y', strtotime($op->follow_up->month_2)) }} @endif
follow_up->month_2) checked @endif type="checkbox" value="{{ date('Y-m-d') }}" id="month_2">
follow_up->month_4) checked @endif type="checkbox" value="{{ date('Y-m-d') }}" id="month_4">
@if ($op->follow_up->month_6) {{ date('d M Y', strtotime($op->follow_up->month_6)) }} @endif
follow_up->month_6) checked @endif type="checkbox" value="{{ date('Y-m-d') }}" id="month_6">
@error('note') {{ $message }} @enderror
@endsection @section('js') @endsection