Skip to content

Instantly share code, notes, and snippets.

@wichaksono
Created March 10, 2018 02:51
Show Gist options
  • Save wichaksono/7f02a6c8c81ad3dded2aca50816f63f4 to your computer and use it in GitHub Desktop.
Save wichaksono/7f02a6c8c81ad3dded2aca50816f63f4 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use App\User;
use Illuminate\Database\Eloquent\Model;
class SocialAccount extends Model
{
protected $fillable = [
'user_id',
'provider_user_id',
'provider',
'created_at',
'updated_at'
];
public function user()
{
return $this->belongsTo(User::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment