@extends('admin.master') @section('content') @section('title','Employee Training Report')
@yield('title')

@if(nCount($results) > 0 && $results !='')

Download PDF

@endif @if($results !='')
@if(count($results) > 0) {{$sl=null}} @foreach($results as $value) @if($value['start_date'] !='') @else @endif @endforeach @else @endif
S/L Training Type Training Duration Status
{{++$sl}} {{$value['training_type_name']}}{{$value['start_date']}} To {{$value['end_date']}}-- @php if($value['action'] == "Yes"){ echo ""; }else{ echo "--"; } @endphp
No data have found !
@endif
@endsection