@extends('layouts.master') @section('title',trans('employees')) @section('main')

@csrf
@lang('please enter full name')
@lang('please select the role')
@foreach($employees as $employee) @endforeach
@lang('id') @lang('name') @lang('role') @lang('email') @lang('action')
{{$employee->id}} {{$employee->name}} @foreach($employee->roles as $role) {{$role->label}} @endforeach {{$employee->email}}
@endsection