/
home
/
techb158
/
ileadtechnology.com
/
SSM
/
app
/
Models
/
configuration
/
post
/
/home/techb158/ileadtechnology.com/SSM/app/Models/configuration/post
mkdir
upload
Name
Size
Mode
Actions
ArticleType.php
1279
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/SSM/app/Models/configuration/post/ArticleType.php
(1279B)
<?php namespace App\Models\Configuration\Post; use Illuminate\Database\Eloquent\Model; use Spatie\Activitylog\Traits\LogsActivity; class ArticleType extends Model { use LogsActivity; protected $fillable = [ 'name', 'description', 'options' ]; protected $casts = ['options' => 'array']; protected $primaryKey = 'id'; protected $table = 'article_types'; protected static $logName = 'article_type'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function articles() { return $this->hasMany('App\Models\Post\Article'); } 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