for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Social extends Model
{
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'social_logins';
public function user()
return $this->belongsTo('App\Models\User');
}