@extends('material.layouts.dashboard') @push('styles') @endpush @section('page-title', 'Causas') @section('page-description', 'ver, crear, modificar y eliminar causas') @section('content')
@component('themes.bootstrap.components.portlet', ['icon' => 'fa fa-building-o', 'title' => 'Hallazgo', 'nofooter' => true])
Plan de mejoramiento
{{ $hallazgo->plan['vc_nombre_plan'] }}
Tipo
{{ $hallazgo->plan['vc_tipo'] }}
Auditor
{{ $hallazgo->plan->auditor['full_name'] }}
Código
{{ $hallazgo['vc_codigo'] }}
Componente
{{ $hallazgo['vc_componente'] }}
Factor
{{ $hallazgo['vc_factor'] }}
Descripción del hallazgo
{{ $hallazgo['tx_descripcion'] }}
@if ($hallazgo['tx_analisis_de_causas'])
Soporte análisis de causas
Descargar
@endif
@endcomponent @component('themes.bootstrap.components.portlet', ['icon' => 'fa fa-building-o', 'title' => 'Causas']) {{-- Datatable --}} @component('themes.bootstrap.components.datatable', ['id' => 'causas-table']) @slot('columns', ['','Estado','Id','Numero de acciones incumplidas','Usuario','Causa']) @endcomponent @component('themes.bootstrap.components.modal-large', ['id' => 'modal-form-history', 'class'=>'modalHistoryPlan', 'icon'=>'icon-settings font-green-haze','title' => 'Historial de Causas']) @slot('body')
@endslot @slot('footer')
@endslot @endcomponent @component('themes.bootstrap.components.modal-large', ['id' => 'modal-form', 'class'=>'modalAñadirPlan', 'icon'=>'icon-settings font-green-haze','title' => 'Causas']) @slot('body')
{!! Form::open(['role' => 'form', 'id' => 'form-causa', 'enctype' => 'multipart/form-data', 'novalidate' => 'novalidate', 'method' => 'POST', 'url' => route('store_causa')]) !!}

@if($validacionHallazgoCerrado == 1) {{ Form::button('Cancelar', ['class' => 'btn red', 'data-dismiss' =>"modal", 'id' => 'btn_cancel']) }} {{ Form::button('Guardar', ['class' => 'btn green', 'id' => 'btn_save']) }} @endif
{!! Form::close() !!}
@endslot @slot('footer') @endslot @endcomponent @endcomponent
@endsection @push('functions') @endpush @push('functions') @endpush