39 lines
709 B
PHP
39 lines
709 B
PHP
<?php namespace AnandPatel\SeoExtension\Models;
|
|
|
|
use Model;
|
|
|
|
/**
|
|
* BlogPost Model
|
|
*/
|
|
class BlogPost extends Model
|
|
{
|
|
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
public $table = 'anandpatel_seoextension_blog_posts';
|
|
|
|
/**
|
|
* @var array Guarded fields
|
|
*/
|
|
protected $guarded = ['*'];
|
|
|
|
/**
|
|
* @var array Fillable fields
|
|
*/
|
|
protected $fillable = [];
|
|
|
|
/**
|
|
* @var array Relations
|
|
*/
|
|
public $hasOne = [];
|
|
public $hasMany = [];
|
|
public $belongsTo = [];
|
|
public $belongsToMany = [];
|
|
public $morphTo = [];
|
|
public $morphOne = [];
|
|
public $morphMany = [];
|
|
public $attachOne = [];
|
|
public $attachMany = [];
|
|
|
|
} |