@php use App\Http\Controllers\Mod\ModConfUser;use App\Http\Controllers\Mod\ModKanban;use App\Models\Profile;use Illuminate\Support\Facades\Crypt; //------------------------------------------------------------------------------------------------------------------ // VENDEDOR: SELECT OPTION $todos=2; $todos_label=2; $user_select_css='form-control-sm'; //------------------------------------------------------------------------------------------------------------------ $load=isset($load)?$load:null; $profile=Profile::user(); $id_user=$profile->idUser; $id_user_select=isset($id_user_select)?$id_user_select:null; if ($id_user_select !==null){ $id_user=Crypt::decrypt($id_user_select); } $status_conf_user = ModConfUser::information(['idUserSelect'=>$profile->idUser]); $process_width = isset($status_conf_user->statusNegotiationProcessWidth)?$status_conf_user->statusNegotiationProcessWidth:'22'; //LISTA DOS PROCESSO $record_kanban = ModKanban::information([ 'idUserSelect'=>$profile->idUser, 'idStatusReg'=>1, 'orderByName'=>'processOrder', 'optionList'=>'g', 'optionListQtt'=>'a', ]); //LISTAS DOS PROCESSOS AGRUPADOS $record_kanban_process = ModKanban::information([ 'groupConcatColumn'=>'idKanbanProcess', 'groupConcatAlias'=>'listKanbanProcess', 'groupConcatOrderByName'=>'processOrder', 'orderByName'=>'processOrder', 'idUserSelect'=>$profile->idUser, 'idStatusReg'=>1, ]); $l=1; $p=0; $x_process='xProcess'; $list_kanban_process = ModKanban::listKanbanProcess([ 'xProcess'=>$x_process, 'listKanbanProcess'=>$record_kanban_process->listKanbanProcess, 'crypt'=> 'off', ]); //------------- $btn_client=0; @endphp
{{-- --}} {{-- GERENTE: SELECIONAR VENDEDORES --}} @include('mod-negotiation.index-seller')
@if(count($record_kanban)==0)

Informações


Não foi selecionados os processoas do seu KANBAN.

Dicas: Habilite agora:    
@endif @foreach($record_kanban as $row) @php if ($row->idKanbanProcess==1){ $btn_client = $row->idKanbanProcess; } $id_kanban = $x_process. $row->idKanbanProcess; // $id_kanban = Crypt::encrypt($row->idKanban); @endphp
{{-- PESQUISAR: CARDS --}} @include('mod-kanban.index-load-btn-search') @if($row->statusProcessMaxMin==2) @include('mod-kanban.index-load-btn') @elseif($row->statusProcessMaxMin==1)
{{$row->processName}}
@include('mod-kanban.index-load-btn')
@endif
{{-- CONTEUDO DOS CARDS --}}
Loading...
{{-- --}} @php $l++ @endphp
@endforeach
@if($load=='on') @include('mod-kanban.script') @endif