62 lines
4.2 KiB
PHP
62 lines
4.2 KiB
PHP
<x-other.modal id="mFormProsesTask" size="xl" title="Form Proses Task" subTitle="" info="" :separator="true">
|
|
<x-slot name="action">
|
|
<button onclick="prosesCssTask()" class="btn btn-success font-weight-bold mr-2">Simpan</button>
|
|
</x-slot>
|
|
<x-slot name="content">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card card-custom card-border card-stretch gutter-b">
|
|
<div class="card-body">
|
|
<form id="form_helpdesk">
|
|
<input type="hidden" id="get_id_" name="id" value="">
|
|
<div class="row">
|
|
<div class="col-12 mb-5">
|
|
<h6>Task Code: <span style="white-space: pre-wrap !important; font-size: 1rem; font-weight: normal;" id="task_code"></span></h6>
|
|
<h6>Task Name: <span style="white-space: pre-wrap !important; font-size: 1rem; font-weight: normal;" id="task_name"></span></h6>
|
|
<h6>Catatan Dari Pelapor: <br> <span style="white-space: pre-wrap !important; font-size: 1rem; font-weight: normal;" id="task_note"></span></h6>
|
|
</div>
|
|
<div class="col-12">
|
|
<x-form.textarea title="Catatan" id="notes_imp" value=""/>
|
|
</div>
|
|
<div class="col-4">
|
|
<x-form.date title="Target Date" id="date_deadline" value=""/>
|
|
</div>
|
|
<div class="col-4">
|
|
<x-form.select title="Pilih Status" id="status_id">
|
|
<x-slot name="option">
|
|
@if (!empty($status))
|
|
@foreach ($status as $r)
|
|
<option value="{{ $r->id }}">{{ $r->definition }}</option>
|
|
@endforeach
|
|
@endif
|
|
</x-slot>
|
|
</x-form.select>
|
|
</div>
|
|
<div class="col-4">
|
|
<x-form.select title="Pilih Level" id="critical_level_id">
|
|
<x-slot name="option">
|
|
@if (!empty($level))
|
|
@foreach ($level as $r)
|
|
<option value="{{ $r->id }}">{{ $r->definition }}</option>
|
|
@endforeach
|
|
@endif
|
|
</x-slot>
|
|
</x-form.select>
|
|
</div>
|
|
<div class="col-lg-12">
|
|
<div class="form-group mb-1">
|
|
<label>Dokumen Helpdesk</label>
|
|
<div class="custom-file">
|
|
<input type="file" class="custom-file-input" name="dok_helpdesk" id="dok_helpdesk">
|
|
<label class="custom-file-label selected" for="customFile"></label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-slot>
|
|
</x-other.modal> |