@extends('layouts.master') @section('title', 'Employee Permission') @section('page-header') Employee Permission @stop @section('css') @stop @section('content')
Edit User Permission
@csrf
    @foreach ($modules->where('name', 'Employee Permission') as $index => $module)
  • @foreach ($module->submodules as $submodule)
    @foreach ($submodule->parent_permissions as $in => $parent_permissions) @foreach ($parent_permissions->permissions as $permission) @endforeach @endforeach
    @endforeach
  • @endforeach
List
@endsection @section('js') {{-- dynamically control checkbox --}} {{-- // populate employee information when select employee id --}} {{-- acrodion --}} @stop