@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Evaluation forms')) @section('content')
| {{ __('Title') }} | {{ __('Dept') }} | {{ __('Designation') }} | {{ __('Priority') }} | {{ __('Active') }} | |
|---|---|---|---|---|---|
| {{ $r->title }} | {{ $r->department?->name ?? '—' }} | {{ $r->designation?->name ?? '—' }} | {{ $r->priority }} | {{ $r->is_active ? __('Yes') : __('No') }} | @can('PerformanceAppraisal-edit') {{ __('Edit') }} @endcan @can('PerformanceAppraisal-delete') @endcan |