mirror of
https://github.com/slawkens/myaac.git
synced 2025-06-14 08:44:29 +02:00
23 lines
438 B
PHP
23 lines
438 B
PHP
<?php
|
|
|
|
namespace MyAAC\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class News extends Model {
|
|
|
|
protected $table = TABLE_PREFIX . 'news';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'title', 'body', 'type', 'date', 'category', 'player_id',
|
|
'last_modified_by', 'last_modified_date', 'comments', 'article_text',
|
|
'article_image', 'hide'
|
|
];
|
|
|
|
public function player()
|
|
{
|
|
return $this->belongsTo(Player::class);
|
|
}
|
|
}
|