@extends('app') @section('head') {!! Html::style('css/stickyTableHeaders.css') !!} {!! Html::style('css/stickyTableHeaders.normalize.css') !!} {!! Html::style('css/cartera.css') !!} @endsection @section('content')
{!!Form::open(['action' => ['Manager\ProclientsController@index'], 'class' => 'form-horizontal', 'method'=>'GET'])!!}
{!! Form::hidden('export') !!} Exportar
{!!Form::close()!!} {!! $clients->render()!!}
@include('errors.partials.alert',['errors'=>$errors->client]) @if($clients->count() > 0)
Datos Prospecto Datos Contacto Prospecto Datos beneficiario
@foreach($aditional_columns as $column => $enabled) @if($enabled) @endif @endforeach @foreach($columns as $column => $enabled) @if($enabled) @endif @endforeach @foreach($clients as $client) @if(($executive = $client->executive)) @endif @foreach($aditional_columns as $column => $enabled) @if($enabled) @endif @endforeach @foreach($columns as $column => $enabled) @if($enabled) @endif @endforeach @endforeach
NOMBRE COMPLETO Ejecutivo @lang("proclient.$column") @lang("proclient.$column")
{{$client->a_paterno}} {{$client->a_materno}} {{$client->nombre}} @if($client->family == 'C' or (! $client->family)) @if ($executive)
{{$executive->fullname}}
@else @endif @else {{$executive->fullname}} @endif
{{$client->$column}} {{$client->$column}}
@else
No hay clientes que mostrar
@endif @include('manager.proclients.partials.assign_modal') @include('manager.proclients.partials.assign_error_modal') @if (isset($columns)) {!! Form::open(['method' => 'POST', 'id' => 'filter-column-form']) !!} {!! Form::hidden('current_page', Input::get('page', 1)) !!} {!! Form::hidden('page') !!} @include('common.proclients.partials.modal_columns') @include('common.proclients.partials.modal_order') @include('common.proclients.partials.modal_filter') {!! Form::close() !!} @endif @stop @section('script') {!! Html::script('js/throttle.min.js') !!} {!! Html::script('js/clients/index.scroll.js') !!} {!! Html::script('js/jquery.stickyheader.js') !!} @stop