%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/resources/views/dashboard/employee/widgets/ |
Upload File : |
@if (in_array('appreciation', $activeWidgets) && isset($sidebarUserPermissions['view_appreciation']) && $sidebarUserPermissions['view_appreciation'] != 5 && in_array('employees', user_modules()))
<!-- EMP DASHBOARD APPRECIATION START -->
<div class="col-sm-12">
<x-cards.data class="e-d-info mb-3" :title="__('app.employee').' '.__('modules.dashboard.appreciation')" padding="false" otherClasses="h-200">
<x-table class="appreciation-table">
@forelse ($appreciations as $appreciation)
<tr>
<td>
<x-employee :user="$appreciation->awardTo" />
</td>
<td class="text-right pr-20">
<div class="d-flex justify-content-end" data-toggle="tooltip" data-original-title="">
@if(isset($appreciation->award))
<div class="ml-1 f-12 mr-3">
<span class="font-weight-semibold">{{ $appreciation->award->title }}</span><br>
{{ $appreciation->award_date->translatedFormat($company->date_format) }}
</div>
@endif
<x-award-icon :award="$appreciation->award" />
</div>
</td>
</tr>
@empty
<tr>
<td colspan="3" class="shadow-none">
<x-cards.no-record icon="award" :message="__('messages.noRecordFound')" />
</td>
</tr>
@endforelse
</x-table>
</x-cards.data>
</div>
<!-- EMP DASHBOARD APPRECIATION END -->
@endif