3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/app/Session.php

40 lines
632 B
PHP
Raw Permalink Normal View History

2020-02-26 13:59:58 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Session extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'sessions';
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The "type" of the auto-incrementing ID.
*
* @var string
*/
protected $keyType = 'string';
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'user_agent', 'payload'
];
}