@extends('layout.admin_layout') @section('title', 'Manage Patient') @section('body') @section('header', 'Manage Patient') @section('badge') @endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@foreach($patients as $key=>$u_d) @if($u_d->status == 0) @else @endif @endforeach
No Name Email Gender Status Action
{{$loop->iteration}} {{$u_d->name}} {{$u_d->email}} {{$u_d->sex}} InactiveActive
@endsection @push('scripts') @endpush