add data alternatif
This commit is contained in:
parent
f091b396f4
commit
fd33dd3ad3
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateMstAlternatifTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('mst_alternatif', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('kode_alternatif');
|
||||
$table->string('nama_kriteria');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('mst_alternatif');
|
||||
}
|
||||
}
|
|
@ -53,7 +53,7 @@
|
|||
"emptyTable": "Data Alternatif kosong."
|
||||
},
|
||||
columnDefs: [{
|
||||
targets: 4,
|
||||
targets: 0,
|
||||
className: 'text-center'
|
||||
}],
|
||||
columns:[
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
<h6 class="m-0 font-weight-bold text-primary">Data Pribadi</h6>
|
||||
</a>
|
||||
<!-- Card Content - Collapse -->
|
||||
<div class="collapse show" id="collapseCardExample" style="">
|
||||
<div class="collapse show" id="collapseCardExample" >
|
||||
<div class="card-body">
|
||||
<div class="form-group">
|
||||
<strong for="">Nama Guru</strong>
|
||||
|
@ -159,7 +159,7 @@
|
|||
<h6 class="m-0 font-weight-bold text-primary">Informasi Akademik</h6>
|
||||
</a>
|
||||
<!-- Card Content - Collapse -->
|
||||
<div class="collapse show" id="dataPendidikan" style="">
|
||||
<div class="collapse show" id="dataPendidikan" >
|
||||
<div class="card-body">
|
||||
<div class="form-group">
|
||||
<label for="">NUPTK</label>
|
||||
|
|
Loading…
Reference in New Issue