@extends('layout.sidebar') @section('content') @section('title','Empleados con FotografĂ­a') {{ Form::open(array('url' => action('EmployeePictureController@postReportPdf', array()), 'class' => '', 'method' => 'POST','id'=>'dataPdf')) }} {{Form::token()}}



@foreach($listEmployeePicture as $employee) @endforeach
EMPLEADO TIPO DE EMPLEADO ARCHIVO
{{$employee->employee}}
{{$employee->employee}}
@foreach($aux AS $j) @if( $j == 'TEACHING')

Docente

@elseif($j == 'ADMINISTRATIVE')

Administrativo

@elseif($j == 'SERVICES')

Servicios

@elseif($j == 'EXTERNAL')

Externo

@endif @endforeach
@if($employee->withPhoto == 'YES') Con Foto
@else Sin Foto
@endif
{{Form::close()}} {{ HTML::style('css/common/feature-table.css') }} {{ HTML::script('js/common/feature-table.js') }} {{ HTML::script('js/employeePicture/index.js') }} @stop