@extends('layouts.dashboard')
@section('title', 'Data Ibu Hamil')
@section('content')
Data Ibu Hamil
| No |
Nama |
Tanggal Lahir |
Alamat |
No HP |
Aksi |
@forelse ($ibu_hamil as $index => $ibu_hamils)
| {{ $index + 1 }} |
{{ $ibu_hamils->nama }} |
{{ $ibu_hamils->tgl_lahir }} |
{{ $ibu_hamils->alamat }} |
{{ $ibu_hamils->no_hp }} |
|
@empty
|
Belum ada data ibu hamil
|
@endforelse
@endsection