13 lines
160 B
PHP
Executable File
13 lines
160 B
PHP
Executable File
<?php
|
|
|
|
class Authentication extends Eloquent
|
|
{
|
|
/**
|
|
* @return
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User');
|
|
}
|
|
}
|