add crud signer

This commit is contained in:
KhatamNugraha
2023-08-21 15:48:15 +07:00
parent 969fd88aa4
commit 0fbd2a0423
14 changed files with 684 additions and 35 deletions

View File

@ -16,6 +16,7 @@ return new class extends Migration
Schema::table('', function (Blueprint $table) {
Schema::create('fasilitas', function (Blueprint $table) {
$table->id();
$table->string('nomor_cif');
$table->string('nomor_rekening');
$table->string('jenis_fasilitas');
$table->string('saldo');
@ -44,4 +45,4 @@ return new class extends Migration
{
Schema::dropIfExists('fasilitas');
}
};
};