@extends('layouts.dashboard') @section('dashboard') @if(session('message'))
{{ session('message') }}
@endif

Vendedores MercadoLibre

{{ csrf_field() }}

Vendedores MercadoLibre

@if(count($cuentas) > 0) @foreach($cuentas as $c) @php $i = 1; $cuenta_id = $c->vendedor_id; $num = $cuenta_id; $borrar = false; $vendedores_cuenta = \FCRD::getVendedoresCuentaML($json, $cuenta_id); @endphp @endforeach
Cuenta Vendedores Autorizados
{{ $c->vendedor_ml_nick }}
@if(count($vendedores_cuenta) > 0) @foreach($vendedores_cuenta as $vc) @php if($i > 1) { $borrar = true; } $num = $i; @endphp @include('dashboard.parametros.input-vendedor-ml') @php $i++; @endphp @endforeach @else @include('dashboard.parametros.input-vendedor-ml') @endif
@endif
@endsection