9b2e466b7e
* Discord notifications for events #433 * Style fixes * Check for blank webhook urls and disable * Cleanup items after review * Changes and fixes * Style fixes * Don't load env for testing * Fix status text * Refactor saving fields/fares so events get the latest data * Cleanup * Style fixes
40 lines
653 B
PHP
40 lines
653 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
/**
|
|
* @property int id
|
|
* @property int|mixed user_id
|
|
* @property string subject
|
|
* @property string body
|
|
* @property User user
|
|
*/
|
|
class News extends Model
|
|
{
|
|
use Notifiable;
|
|
|
|
public $table = 'news';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'subject',
|
|
'body',
|
|
];
|
|
|
|
public static $rules = [
|
|
'subject' => 'required',
|
|
'body' => 'required',
|
|
];
|
|
|
|
/**
|
|
* FOREIGN KEYS
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
}
|