penambahan form assign so

This commit is contained in:
majid
2024-09-18 17:40:24 +07:00
parent 53ccf7de11
commit eb92e1b8f7
9 changed files with 366 additions and 690 deletions

View File

@@ -6,8 +6,7 @@ use Illuminate\Support\Facades\Schema;
use Modules\Lpj\Models\JenisPenilaian;
use Modules\Lpj\Models\Teams;
return new class extends Migration
{
return new class () extends Migration {
/**
* Run the migrations.
*/
@@ -19,8 +18,9 @@ return new class extends Migration
$table->foreignIdFor(Teams::class);
$table->unsignedBigInteger('user_id');
$table->datetime('tanggal_kunjungan');
$table->text('keterangan');
$table->text('keterangan')->nullable();
$table->char('status');
$table->integer('permohonan_id');
$table->timestamps();
$table->char('authorized_status', 1)->nullable();
$table->timestamp('authorized_at')->nullable();