| Title |
@if($category == 'blood')
Blood |
@endif
Name |
@if($category == 'joining')
Joining Date |
@endif
@if($category == 'dues')
Status |
@endif
@if($category == 'birthday')
Birthday |
@endif
Email |
Mobile |
Other Details |
Action |
@if(count($employee)>0)
@foreach($employee as $key=>$value)
| {{$value->title}} |
@if($category == 'blood')
{{$value->blood_group}} |
@endif
{{$value->name}} |
@if($category == 'joining')
{{$value->joining_Date}} |
@endif
@if($category == 'dues')
{{$value->status}} |
@endif
@if($category == 'birthday')
{{date('d M',strtotime($value->dob))}} |
@endif
{{$value->email}} |
{{$value->mobile}} |
Other Details |
|
@endforeach
@else
| Data not Found |
@endif