@extends('layout.admin_layout')
@section('title', 'Symptoms')
@section('body')
@section('header', '
Symptoms')
@section('badge')
Symptoms
@endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| No |
Chief Complaint |
Symptoms |
Question |
Priority |
Image |
Status |
Action |
@foreach($data as $key=>$value)
|
{{$key+1}}
|
{{$value->problem}} |
{{$value->symptoms}} |
{{get_type_question($value->type)}} |
{{$value->priority}} |
@if($value->img === null)
 |
@else
 |
@endif
@if($value->status == 1)
Active |
@else
Inactive |
@endif
|
@endforeach
@endsection
@push('scripts')
@endpush