Frontend Changes

This commit is contained in:
Utkarsh Khedkar
2026-02-28 11:00:48 +05:30
parent 599023166a
commit c11467068c
6 changed files with 321 additions and 37 deletions

View File

@@ -0,0 +1,26 @@
<?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()
{
Schema::table('invoices', function (Blueprint $table) {
$table->date('duedate')->nullable()->after('invoicedate');
});
}
public function down()
{
Schema::table('invoices', function (Blueprint $table) {
$table->dropColumn('duedate');
});
}
};