Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @extends('template')
  2. @section('title','list employee')
  3. @section('content')
  4. <h3>List Employee</h3>
  5. {{ link_to('employee/create','Create New Employee')}}
  6. <table>
  7. <tr><th>NIP</th><th>NAME</th></tr>
  8. @foreach($employees as $row)
  9. <tr>
  10. <td>{{ $row['nip']}}</td>
  11. <td>{{ $row['name']}}</td>
  12. </tr>
  13. @endforeach
  14. </table>
  15. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement