for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MedianetDev\LaravelAuthApi\Models;
use Illuminate\Database\Eloquent\Model;
class LinkedSocialAccount extends Model
{
protected $fillable = [
'provider_name',
'provider_id',
'email',
];
public function user()
return $this->belongsTo(ApiUser::class);
}