@extends('layouts.core.app')
@section('title')
User Management
@endsection
@section('pageIcon') fa fa-users @endsection
@section('pageTitle') User Management @endsection
@section('subPageTitle') User Management for the ISR QR Code Service Portal Application. @endsection
@section('content')
Master Data
@if($getCreate == $getKdModule)
@include('helpers.button.buttonCreate')
@endif
| Name |
Email |
Role |
Action |
@foreach($users as $key => $value)
id) ?>
| {{$value->name}} |
{{$value->email}} |
{{\App\Model\Privillage\Role::where('id',$value->role_id)->value('role_name')}} |
id) ?>
@include('helpers.button.buttonDetail')
@if($getEdit == $getKdModule)
@include('helpers.button.buttonEdit')
@endif
@if($getDelete == $getKdModule && $value->id != Auth::user()->id)
DELETE
@endif
|
@endforeach
@endsection
@section('modals')
@include('layouts.dev.info.userManagement.create')
@include('layouts.dev.info.userManagement.edit')
@include('layouts.dev.info.userManagement.detail')
@endsection
@section('script')
@include('layouts.dev.info.userManagement.request')
@endsection