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

24
app/ActivityLog.php Executable file
View File

@@ -0,0 +1,24 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ActivityLog extends Model
{
//
protected $guarded = ['id'];
public function admin()
{
return $this->belongsTo('App\User', 'user_id', 'id');
}
public function merchantInfo()
{
return $this->belongsTo('App\Models\Merchant', 'merchant_id', 'id');
}
public function orgUserInfo()
{
return $this->belongsTo('App\Models\OrgUser', 'org_user_id', 'id');
}
}