@extends('layout') @section('title', 'Skills') @section('content')

Employee Skills Inventory

@if(!$skills->isEmpty())

@foreach($skills as $skill) @endforeach
Name Application Date Actions
{{ $skill->first_name }} {{ $skill->last_name }} {{ date('Y-m-d', strtotime($skill->signature_date)) }}
@csrf @method('DELETE') @if (in_array(Auth::user()->role, array('intern', 'admin'))) @endif
Name Application Date Actions
@else Create @endif
@endsection @section('js') @endsection()