Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. @extends('template')
  2. @section('title','list Book')
  3. @section('content')
  4.  
  5. @include('alert')
  6.  
  7. <table class="table table-bordered">
  8. <tr>
  9. <th>ID</th>
  10. <th>Nama Departemen</th>
  11. <th colspan="2"></th>
  12. </tr>
  13. @foreach($departements as $row)
  14. <tr>
  15. <td>{{ $row->id }}</td>
  16. <td>{{ $emp->departemen }}</td>
  17. <td>{{ link_to('/karyawan/'.$row->id.'/edit','Edit',['class'=>'btn btn-info'])}}</th>
  18. <td>
  19. {{ Form::open(['url'=>'karyawan/'.$row->id,'method'=>'delete'])}}
  20. {{ Form::submit('Delete',['class'=>'btn btn-danger'])}}
  21. {{ Form::close()}}
  22. </td>
  23. </tr>
  24. @endforeach
  25. </table>
  26.  
  27. {{ link_to('karyawan/create','Tambah Data',['class'=>'btn btn-warning'])}}
  28. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement