SIM Barang Habis Pakai

This commit is contained in:
Duidev Software House
2025-01-30 19:10:26 +07:00
parent 1fd881750d
commit f2c4fb19eb
9 changed files with 1265 additions and 44 deletions

View File

@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('simbhpjenis', function (Blueprint $table) {
$table->id();
$table->string('kodejenis', 150)->nullable();
$table->string('jenis', 150)->nullable();
$table->string('satuan', 150)->nullable();
$table->timestamp('created_at')->useCurrent();
$table->timestamp('updated_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('simbhpjenis');
}
};

View File

@@ -0,0 +1,37 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('simbhpreport', function (Blueprint $table) {
$table->id();
$table->integer('tanggal')->nullable();
$table->integer('bulan')->nullable();
$table->integer('tahun')->nullable();
$table->text('deskripsi')->nullable();
$table->integer('pemasukan')->nullable();
$table->integer('pengeluaran')->nullable();
$table->string('jenis', 150)->nullable();
$table->string('keterangan', 150)->nullable();
$table->string('marking', 150)->nullable();
$table->timestamp('created_at')->useCurrent();
$table->timestamp('updated_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('simbhpreport');
}
};