membuat fitur download surat tender dalam bentuk pdf part 1

This commit is contained in:
2024-11-13 18:07:57 +07:00
parent e2061a3f5d
commit c1f66b23c3
11 changed files with 441 additions and 96 deletions

View File

@@ -0,0 +1,28 @@
<?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::table('penawaran', function (Blueprint $table) {
$table->datetime('end_date')->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('penawaran', function (Blueprint $table) {
$table->date('end_date')->change();
});
}
};