@extends('layout.admin_layout')
@section('title', 'Chief Complaint')
@section('body')
@section('header', '
Chief Complaint')
@section('badge')
Chief Complaint
@endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| No |
Chief Complaint |
Age Limit |
Status |
Under Top 10 |
Img |
Action |
@foreach($data as $key=>$value)
|
{{$key+1}}
|
{{$value->problem}} |
{{$value->age_b}} |
@if($value->status == 1)
Active |
@else
Inactive |
@endif
@if($value->top == 1)
Yes |
@else
No |
@endif
 |
|
@endforeach
@endsection
@push('scripts')
@endpush