epung

show.blade.php

May 27th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. @extends('template')
  2. @section('main')
  3. <div id="karyawan">
  4. <h2> Detail Karyawan</h2>
  5. <table class="table table-striped">
  6. <tr>
  7. <th>Foto</th>
  8. <td><img src="{{ asset('fotoupload/'.$karyawan->foto) }}" id="showgambar" style="max-width:125;max-height:125px;float:left;" /></td>
  9. {{--penambahan field foto untuk menampilkan foto yang di upload--}}
  10. </tr>
  11.  
  12. <tr>
  13. <th>NIP</th>
  14. <td>{{ $karyawan->nip }}</td>
  15. </tr>
  16. <tr>
  17. <th>Nama</th>
  18. <td>{{ $karyawan->nama }}</td>
  19. </tr>
  20. <tr>
  21. <th>Tanggal Lahir</th>
  22. <td>{{ $karyawan->tgl_lahir }}</td>
  23. </tr>
  24. <tr>
  25. <th>Jenis Kelamin</th>
  26. <td>{{ $karyawan->gender }}</td>
  27. </tr>
  28. <tr>
  29. <th colspan="2"> {{ link_to('karyawan','Kembali')}}</th>
  30. </tr>
  31. </table>
  32. </div>
  33. @stop
  34. @section('footer')
  35. @include('footer')
  36. @stop
Advertisement
Add Comment
Please, Sign In to add comment