@php
use App\Http\Controllers\Mod\ModSalesOrder;use App\Models\Profile;
use Illuminate\Support\Facades\Crypt;
use App\Http\Controllers\Mod\ModKanban;
//PERFIL DO USUARIO
$profile = Profile::user();
@endphp
Total: {{$record->total()}}
@foreach($record as $row)
@php
$id_general = isset($row->idGeneral)?$row->idGeneral:null;
//--------------------------------------------------------------------------------------------------------------
//TAREFAS: PROPOSTA
$record_task = ModSalesOrder::informationSimple([
'idSalesOrder'=>$id_general,
'idUserResponsible'=>$profile->idUser,
]);
//--------------------------------------------------------------------------------------------------------------
//ID CRIPTOGRAFADO
$task = ModKanban::taskId([
'idKanban'=>$row->idKanban,
'idKanbanTask'=>$row->idKanbanTask,
'idKanbanProcess'=>$row->idKanbanProcess,
'idGeneral'=>$row->idGeneral,
]);
@endphp
NÂș
: {{isset($record_task->idNegotiation)?$record_task->idNegotiation:null}}
-{{isset($record_task->idSalesOrder)?$record_task->idSalesOrder:null}}
@endforeach
@include('mod-kanban.script-refresh')