18 lines
433 B
PHP
18 lines
433 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Metadata extends Model
|
|
{
|
|
public $incrementing = false;
|
|
protected $primaryKey = 'url';
|
|
protected $keyType = 'string';
|
|
|
|
protected $fillable = ['url', 'title', 'description', 'image', 'expires_at'];
|
|
protected $visible = ['url', 'title', 'description', 'image', 'expires_at'];
|
|
|
|
protected $dates = ['created_at', 'updated_at', 'expires_at'];
|
|
}
|