@extends('template')
@section('main')
<div id="karyawan">
<h2>Detail Karyawan</h2>
<table class="table table-striped">
<tr>
<th>NIP</th>
<td>{{ $karyawan->nip }}</td>
</tr>
<tr>
<th>Nama</th>
<td>{{ $karyawan->nama }}</td>
</tr>
<tr>
<th>Tanggal Lahir</th>
<td>{{ $karyawan->tgl_lahir }}</td>
</tr>
<tr>
<th>Jenis Kelamin</th>
<td>{{ $karyawan->gender }}</td>
</tr>
<tr>
<th>foto</th>
<td>
@if(isset($karyawan->foto))
<img src="{{ asset('assets/uploads/'. $karyawan->foto) }}" alt="" style="width:200px; height:200px;">
@else
@if($karyawan->gender == 'L')
<img src="{{ asset('assets/images/male.png') }}" alt="" style="width:200px; height:200px;">
@else
<img src="{{ asset('assets/images/female.png') }}" alt="" style="width:200px; height:200px;">
@endif
@endif
</td>
</tr>
<tr>
<th colspan="2">{{ link_to('karyawan','kembali') }}</th>
</tr>
</table>
</div>
@stop
@section('footer')
@include('footer')
@stop