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

16
app/Models/OrgUser.php Executable file
View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class OrgUser extends Model{
public $table = "org_users";
protected $guarded = ['id'];
public function org_info(){
return $this->hasOne('App\Models\Organisation', 'id', 'org_id');
// return $this->belongsTo(Organisation::class);
}
}