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
+6
View File
@@ -11,7 +11,13 @@ class Region extends Model
protected $table = 'region';
protected $fillable = [
'head_id',
'code',
'name',
];
public function head()
{
return $this->belongsTo('App\Models\Admin');
}
}