@extends('admin.master') @section('content') @section('title','Performance Criteria List')
@yield('title')
@if(session()->has('success'))
 {{ session()->get('success') }}
@endif @if(session()->has('error'))
 {{ session()->get('error') }}
@endif
{!! $sl=null !!} @foreach($results AS $value) @endforeach
S/L Performance Category Name Performance Criteria Name Action
{!! ++$sl !!} @if(isset($value->category->performance_category_name )) {{ $value->category->performance_category_name }} @endif {!! $value->performance_criteria_name !!}
@endsection