worked on the new onboarding steps

This commit is contained in:
Kwesi Banson
2024-01-31 20:40:33 +00:00
parent bc97f69748
commit 7a64019001
184 changed files with 11292 additions and 173 deletions

16
app/Models/LoggedUser.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class LoggedUser extends Model
{
protected $guarded = array('id');
public $table = "logged_users";
public function auth_user_info(){
return $this->hasOne('App\Models\Account', 'id', 'user_id');
}
}