mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
40 lines
590 B
PHP
40 lines
590 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BookInfo extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'bookinfo';
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'title',
|
|
'author',
|
|
'asin',
|
|
'isbn',
|
|
'ean',
|
|
'url',
|
|
'salesrank',
|
|
'publisher',
|
|
'publishdate',
|
|
'pages',
|
|
'overview',
|
|
'genre',
|
|
'cover',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
}
|