85 lines
1.7 KiB
PHP
85 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Zoomyboy\Event\Models;
|
||
|
|
||
|
use Model;
|
||
|
|
||
|
/**
|
||
|
* Event Model.
|
||
|
*/
|
||
|
class Event extends Model
|
||
|
{
|
||
|
use \Winter\Storm\Database\Traits\Validation;
|
||
|
use \Winter\Storm\Database\Traits\Sluggable;
|
||
|
|
||
|
/**
|
||
|
* @var string the database table used by the model
|
||
|
*/
|
||
|
public $table = 'zoomyboy_event_events';
|
||
|
|
||
|
protected $slugs = ['slug' => 'name'];
|
||
|
|
||
|
/**
|
||
|
* @var array Guarded fields
|
||
|
*/
|
||
|
protected $guarded = ['*'];
|
||
|
|
||
|
/**
|
||
|
* @var array Fillable fields
|
||
|
*/
|
||
|
protected $fillable = [];
|
||
|
|
||
|
/**
|
||
|
* @var array Validation rules for attributes
|
||
|
*/
|
||
|
public $rules = [];
|
||
|
|
||
|
/**
|
||
|
* @var array Attributes to be cast to native types
|
||
|
*/
|
||
|
protected $casts = [];
|
||
|
|
||
|
/**
|
||
|
* @var array Attributes to be cast to JSON
|
||
|
*/
|
||
|
protected $jsonable = [];
|
||
|
|
||
|
/**
|
||
|
* @var array Attributes to be appended to the API representation of the model (ex. toArray())
|
||
|
*/
|
||
|
protected $appends = [];
|
||
|
|
||
|
/**
|
||
|
* @var array Attributes to be removed from the API representation of the model (ex. toArray())
|
||
|
*/
|
||
|
protected $hidden = [];
|
||
|
|
||
|
/**
|
||
|
* @var array Attributes to be cast to Argon (Carbon) instances
|
||
|
*/
|
||
|
protected $dates = [
|
||
|
'created_at',
|
||
|
'updated_at',
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* @var array Relations
|
||
|
*/
|
||
|
public $hasOne = [];
|
||
|
public $hasMany = [];
|
||
|
public $hasOneThrough = [];
|
||
|
public $hasManyThrough = [];
|
||
|
public $belongsTo = [];
|
||
|
public $belongsToMany = [];
|
||
|
public $morphTo = [];
|
||
|
public $morphOne = [];
|
||
|
public $morphMany = [];
|
||
|
public $attachOne = [];
|
||
|
public $attachMany = [];
|
||
|
|
||
|
public static function getOptions(): array
|
||
|
{
|
||
|
return static::pluck('name', 'id')->toArray();
|
||
|
}
|
||
|
}
|