added email notifications on expense approved/rejected (whatsapp tmr)

This commit is contained in:
Jagad R R
2024-12-24 15:12:24 +07:00
parent 6dc23422ed
commit 0030c0f48e
21 changed files with 1627 additions and 13 deletions
@@ -0,0 +1,29 @@
<?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('region', function (Blueprint $table) {
$table->foreignId('head_id')->nullable()->constrained('admins')->onDelete('set null')->after('id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('region', function (Blueprint $table) {
$table->dropForeign(['head_id']);
$table->dropColumn('head_id');
});
}
};
@@ -0,0 +1,29 @@
<?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('cabang', function (Blueprint $table) {
$table->foreignId('head_id')->nullable()->constrained('admins')->onDelete('set null')->after('id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('cabang', function (Blueprint $table) {
$table->dropForeign(['head_id']);
$table->dropColumn('head_id');
});
}
};