@extends('admin.layouts.layouts') @section('title', 'View Hr Policy') @section('page-css') @endsection @section('content')
Hr Policy Details
Effective From:
{{ date('d-m-Y', strtotime($hrPolicy->effective_date)) ?? '-' }}
Created At:
{{ $hrPolicy->created_at->format('d-m-Y') }}
Created By:
{{ $hrPolicy->creator?->name }}
Updated At:
{{ $hrPolicy->updated_at->format('d-m-Y') }}
Updated By:
{{ isset($hrPolicy->updated_at) ? $hrPolicy->editor?->name : '-' }}


Hr Policy:
{!! $hrPolicy->description !!}
@endsection @section('page-js') @endsection