first commit

This commit is contained in:
2026-01-23 17:28:21 +07:00
commit 29ff8992b9
331 changed files with 30545 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Concerns\HasUuids;
class SocialAccount extends Model
{
use HasUuids;
protected $fillable = [
'user_id',
'provider',
'provider_id',
'token',
'refresh_token',
'expires_at',
];
/**
* Get the user that owns the social account.
*/
public function user()
{
return $this->belongsTo(User::class);
}
}