@extends('layouts.master') @section('mainContent')
Project Menus
Project Menu
@include('layouts.tenants.project-support-menu')
Skill Matrix
Project Management
Skill Matrix
Training
Skill Matrix
Skills
Allocation
@if(Auth::user()->hasPermission('training_matrix','create'))
Add Allocation
@endif
Emp ID
Allocation Status
Role
Project Name
Reporting To
Start Date
End Date
Skills Used
@endsection @section('customModal')
Add Allocation
Employee name
*
Select Employee
@if (!$employees->isEmpty()) @foreach ($employees as $user)
{{ $user->first_name . ' ' . $user->last_name }}
@endforeach @endif
Employee ID
*
Role
*
Select Role
@if (!$roles->isEmpty()) @foreach ($roles as $role)
{{ $role->name }}
@endforeach @endif
Allocation status
*
Select Status
@if (!$allocation_status->isEmpty()) @foreach ($allocation_status as $allocate)
{{ $allocate->name }}
@endforeach @endif
Project name
*
Select Project
@if (!$projects->isEmpty()) @foreach ($projects as $prj)
{{ $prj->project_id . ' [' . $prj->project_name.']' }}
@endforeach @endif
Reporting to
*
Select User
@if (!$users->isEmpty()) @foreach ($users as $usr)
{{ $usr->first_name . ' ' . $usr->last_name }}
@endforeach @endif
Start date
*
End date
*
Skills used
*
@if (!empty($skillsused)) @foreach ($skillsused as $used)
{{$used}}
@endforeach @endif
@endsection