@extends('layouts.admin') @section('title')Vendedores @stop @section('titulo')VENDEDORES @stop @section('menu-vendedores')active open @stop @section('acciones') @stop @section('descripcion') @stop @section('content') {{--modal--}} @include('vendedores.create_edit')
EXCEL PDF
@foreach($vendedores as $f=>$r) @endforeach
NUM CODIGO NOMBRES NUM
DOCUMENTO
TIPO
DOCUMENTO
NACIONALIDAD TELEFONO EMAIL DIRECCION ESTADO SUPERVISOR CREDITO ACCIONES
{{$f+1}} {{$r->codigo}} {{$r->nombre_completo}} {{$r->carnet}} {{$r->tipo_documento}} {{$r->nacionalidad}} {{$r->telefono}} {{$r->email}} {{$r->direccion}} {{$r->estatus}} @isset($r->supervisornombre) {{$r->supervisornombre->nombre_completo}} @endisset {{$r->credito}}
@section('scripts') @stop @endsection