@extends('layouts.admin') @section('title', 'Skills & Attributes Master') @section('page_title', 'Skills & Attributes') @section('content')

Skills & Attributes

Manage master list of employee qualifications and skills.

Total Skills
{{ $skills->count() }}
Active Categories
{{ $skills->unique('category')->count() }}
Global Skills
{{ $skills->where('active', true)->count() }}
@forelse($skills as $skill) @empty @endforelse
Description / Title Category Status Actions
{{ substr($skill->name, 0, 1) }}
{{ $skill->name }}
ID: #SK-{{ str_pad($skill->id, 4, '0', STR_PAD_LEFT) }}
{{ $skill->category }}

No skills found

Click the button above to add your first skill.

@endsection