| 1 | <?php |
||
| 12 | class LastLogin extends Model |
||
| 13 | { |
||
| 14 | use HasFactory; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * LastLogin constructor. |
||
| 18 | * @param array $attributes |
||
| 19 | */ |
||
| 20 | public function __construct(array $attributes = []) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var array|string[] |
||
| 28 | */ |
||
| 29 | protected $fillable = [ |
||
| 30 | 'user_id', |
||
| 31 | ]; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 35 | */ |
||
| 36 | public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 40 | |||
| 41 | } |
||
| 42 |