@extends('layouts.main') @push('styles') @endpush @section('content')
| {{ __('symptoms.symptom') }} | {{ __('symptoms.prompt') }} | {{ __('symptoms.reference_text') }} | ||
|---|---|---|---|---|
| {{ $symptom->name }} | {{ $symptom->prompts }} |
@php
$reference_areas_array = explode(",", $symptom->reference_link);
$reference_names_array = explode(",", $symptom->reference_text);
@endphp
|
{{ __('symptoms.edit') }} | @if (!in_array($symptom->id, $symptom_data)) {{ Form::model($symptom->id ,['method' => 'DELETE', 'route' => ['symptoms.destroy', $symptom->id]]) }} {{ Form::close() }} @else Symptom recorded @endif |