@extends('template_backend.home') @section('heading', 'Details Guru') @section('page') @endsection @section('content')
...
Nama : {{ $guru->nama_guru }}
NIP : {{ $guru->nip }}
No Id Card : {{ $guru->id_card }}
Guru Mapel : {{ $guru->mapel->nama_mapel }}
Kode Jadwal : {{ $guru->kode }}
@if ($guru->jk == 'L')
Jenis Kelamin : Laki-laki
@else
Jenis Kelamin : Perempuan
@endif
Tempat Lahir : {{ $guru->tmp_lahir }}
Tanggal Lahir : {{ date('l, d F Y', strtotime($guru->tgl_lahir)) }}
No. Telepon : {{ $guru->telp }}
@endsection @section('script') @endsection