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