@extends('layout.admin_layout')
@section('title', 'Allergy')
@section('body')
@section('header', '
Allergy')
@section('badge')
Allergy
@endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| No |
Allergy |
Status |
Action |
@foreach($data as $key=>$value)
|
{{$key+1}}
|
{{$value->allergy}} |
@if($value->status == 1)
Active |
@else
Inactive |
@endif
|
@endforeach
@endsection
@push('scripts')
@endpush