@extends('app')
@section('style')
{!! Html::style('css/stickyTableHeaders.css') !!}
{!! Html::style('css/stickyTableHeaders.normalize.css') !!}
{!! Html::style('css/cartera.css') !!}
@endsection
@section('content')
Regresar
- Inicio
- Cartera
@include('errors.partials.alert',['errors'=>$errors->client])
{!! $clients->render()!!}
@if($clients->count() > 0)
Datos Prospecto
|
Datos Contacto Prospecto
|
Datos beneficiario
|
NOMBRE COMPLETO
|
ID
|
CITAS
|
@foreach($clients as $client)
{{$client->a_paterno}} {{$client->a_materno}} {{$client->nombre}}
|
{{$client->id}}
|
@include('executive/proclients/partials/appointment_buttons')
|
@foreach($columns as $column => $enabled)
@if($enabled)
{{$client->$column}}
|
@endif
@endforeach
@endforeach
@else
No hay clientes que mostrar
@endif
{!! Form::open(['method' => 'POST']) !!}
{!! Form::hidden('current_page', Input::get('page', 1)) !!}
{!! Form::hidden('page') !!}
{!! Form::close() !!}
@stop
@section('modals')
@include('common.proclients.partials.modal_columns')
@include('common.proclients.partials.modal_order')
@include('common.proclients.partials.modal_filter')
@include('appointments.partials.create')
@endsection
@section('script')
{!! Html::script('js/throttle.min.js') !!}
{!! Html::script('js/clients/index.scroll.js') !!}
{!! Html::script('js/jquery.stickyheader.js') !!}
{!! Html::script('js/advancedStepper.js')!!}
@stop