Initial commit

This commit is contained in:
Kwesi Banson Jnr
2026-08-04 14:50:01 +00:00
commit 2cfcfade4e
1605 changed files with 499334 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class MerchantTopUp extends Model
{
public $table = "merchant_top_ups";
protected $guarded = ['id'];
public function merchantInfo()
{
return $this->hasOne('App\Models\Merchant', 'id', 'merchant_id');
}
public function orgUserInfo()
{
return $this->hasOne('App\Models\OrgUser', 'id', 'org_user_id');
}
public function orgInfo()
{
return $this->hasOne('App\Models\Organisation', 'id', 'org_id');
}
}