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