Initial commit
This commit is contained in:
50
app/Models/TaggableContext.php
Normal file
50
app/Models/TaggableContext.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Traits\TaggableWithLocale;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class TaggableContext extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
use TaggableWithLocale;
|
||||
|
||||
//! TODO: This method is not tested yet, as there's no interface yet for updating taggable_contexts
|
||||
protected static function boot()
|
||||
{
|
||||
parent::boot();
|
||||
|
||||
// updating created_by and updated_by when model is created
|
||||
static::creating(function ($model) {
|
||||
if (!$model->isDirty('updated_by_user')) {
|
||||
$model->updated_by_user = Auth::guard('web')->user()->id;
|
||||
}
|
||||
});
|
||||
|
||||
// updating updated_by when model is updated
|
||||
static::updating(function ($model) {
|
||||
if (!$model->isDirty('updated_by_user')) {
|
||||
$model->updated_by_user = Auth::guard('web')->user()->id;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
protected $table = 'taggable_contexts';
|
||||
|
||||
protected $guarded = [];
|
||||
|
||||
|
||||
public function tags()
|
||||
{
|
||||
return $this->belongsToMany(Tag::class, 'taggable_locale_context', 'context_id', 'tag_id');
|
||||
}
|
||||
|
||||
|
||||
public function category()
|
||||
{
|
||||
return $this->belongsTo(Category::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user