@extends('app') @section('content')
Regresar
Inicio
Plantilla
@include('errors.partials.alert',$errors->destroy)
Añadir ejecutivo
Mis ejecutivos
{!! Form::open([ 'method' => 'GET', 'class' => 'form-horizontal']) !!} {!! Form::hidden('active_tab', 'executive') !!}
Número de empleado
{!!Form::text('executive[employee_number]', (Input::get('executive')['employee_number']), ['class' => 'form-control', 'maxlength' => 6])!!}
{!! Form::select('executive[management_id]',[NULL=>'Todas las gerencias']+$managements, Input::get('executive')['management_id'], ['class' => 'form-control']) !!}
{!! Form::close() !!} @if($executives->count() > 0)
@foreach ($executives as $executive) @endforeach
No. empleado
Nombre(s)
Usuario CUSP
{{$executive->no_emp}}
{{$executive->fullname}}
{{$executive->cusp}}
Editar
{!! $executives->appends(array_merge(Input::only(['executive'],['active_tab' => 'executive'])))->render()!!}
@else
No hay usuarios que mostrar
@endif
@stop @section('script') @stop