@extends('admin.master') @section('content') @section('title','Employee Performance List')
@yield('title')
@if(session()->has('success'))
 {{ session()->get('success') }}
@endif @if(session()->has('error'))
 {{ session()->get('error') }}
@endif
@php $i = 1; @endphp @foreach($results AS $value) @endforeach
S/L Employee Name Month Remarks Star Rating Action
{!! $i++ !!} {!! $value->first_name !!} {{$value->last_name}} {{convartMonthAndYearToWord($value->month)}} {!! $value->remarks !!}
@if($value->status !='1') @endif
@endsection