mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
14 lines
272 B
PHP
14 lines
272 B
PHP
<?php
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserSession extends Model {
|
|
protected $table = 'user_sessions';
|
|
|
|
protected $casts = [
|
|
'expire_at' => 'datetime'
|
|
];
|
|
|
|
public function user() {
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|