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

Sent Successfully

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

@endif @endsection @section('content')
Dashboard | Complaint | Complaint @role('Super-admin|Hr') @endrole
Complaint | Suggestion

Appo Date {{ date('h:i a d M Y', strtotime($complaints->appointment->start_at)) }}

{{ $complaints->appointment->patient->name }}

Phone {{ $complaints->appointment->patient->phone_number }}

Doctor

@if ($complaints->appointment->doctor) {{ $complaints->appointment->doctor->name }} @else No Doctor @endif

Creator

{{ $complaints->appointment->creator->name }}

Status

@if ($complaints->status == 0) Unsolved @else Solved @endif


  • {{ date('d M Y', strtotime($complaints->updated_at)) }}

    Answer
    @if (!empty($complaints->answered)) {{ $complaints->answered }} @else No Answer Yet @endif
  • {{ date('d M Y', strtotime($complaints->created_at)) }}

    Complaint | Suggestion
    {{ $complaints->body }}
@endsection @section('js') @endsection