@extends('layout') @section('actions')
Add a Group
@endsection @section('title') Groups Control @endsection @section('content')
@foreach($page['groups'] as $group) @endforeach
# Group Scope Actions
{{ $index++ }} {{ $group->name }} P:{{ $group->policies_count }} M:{{ $group->users_count }}
Edit
@if(count($group->unassigned_users))
{!! csrf_field() !!}
@endif
    @foreach($group->users as $user)
  • ID: {{$user->employee_id}} {{$user->name }}
    Remove View
    {!! csrf_field() !!}
  • @endforeach
@endsection