first commit

This commit is contained in:
2026-01-13 20:57:58 -06:00
commit afd9118d1e
239 changed files with 49001 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Models;
use App\User;
use Illuminate\Database\Eloquent\Model;
class LinkedSocialAccount extends Model
{
protected $fillable = [
'provider_name',
'provider_id',
];
public function user()
{
return $this->belongsTo(User::class);
}
}