{% extends 'base.html.twig' %} {% block title %}Employee index{% endblock %} {% block body %}

Employee index

{% for employee in employees %} {% else %} {% endfor %}
Id Email FirstName LastName Password Roles actions
{{ employee.id }} {{ employee.email }} {{ employee.firstName }} {{ employee.lastName }} {{ employee.password }} {{ employee.roles ? employee.roles|json_encode : '' }} show edit
no records found
Create new {% endblock %}