mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 01:45:54 +08:00
12 lines
229 B
PHP
12 lines
229 B
PHP
<?php namespace BookStack\Api;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ApiToken extends Model
|
|
{
|
|
protected $fillable = ['name', 'expires_at'];
|
|
protected $casts = [
|
|
'expires_at' => 'datetime:Y-m-d'
|
|
];
|
|
}
|