/
home
/
techb158
/
ileadtechnology.com
/
SSM
/
app
/
Models
/
configuration
/
calendar
/
/home/techb158/ileadtechnology.com/SSM/app/Models/configuration/calendar
mkdir
upload
Name
Size
Mode
Actions
EventType.php
1277
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/SSM/app/Models/configuration/calendar/EventType.php
(1277B)
<?php namespace App\Models\Configuration\Calendar; use Illuminate\Database\Eloquent\Model; use Spatie\Activitylog\Traits\LogsActivity; class EventType extends Model { use LogsActivity; protected $fillable = [ 'name', 'description', 'options' ]; protected $casts = ['options' => 'array']; protected $primaryKey = 'id'; protected $table = 'event_types'; protected static $logName = 'event_type'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function events() { return $this->hasMany('App\Models\Calendar\Event'); } public function getOption(string $option) { return array_get($this->options, $option); } public function scopeFilterById($q, $id) { if (! $id) { return $q; } return $q->where('id', '=', $id); } public function scopeFilterByName($q, $name, $s = 0) { if (! $name) { return $q; } return $s ? $q->where('name', '=', $name) : $q->where('name', 'like', '%'.$name.'%'); } }
Save
cmd:
run