@extends('layouts.admin') @section('title', 'Employee Details') @section('subtitle', 'Employee Set-Up / Details View') @section('content')

Employee Details

@foreach($employee as $key => $value)
{{ ucwords(str_replace('_', ' ', $key)) }} {{ $value }}
@endforeach
@endsection