PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
blog
/
src
/
Models
<?php namespace Botble\Blog\Models; use Botble\Base\Traits\EnumCastable; use Botble\Base\Enums\BaseStatusEnum; use Botble\Base\Models\BaseModel; use Illuminate\Database\Eloquent\Relations\BelongsToMany; class Tag extends BaseModel { use EnumCastable; /** * The database table used by the model. * * @var string */ protected $table = 'tags'; /** * The date fields for the model.clear * * @var array */ protected $dates = [ 'created_at', 'updated_at', ]; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'description', 'status', 'author_id', 'author_type', ]; /** * @var array */ protected $casts = [ 'status' => BaseStatusEnum::class, ]; /** * @return BelongsToMany */ public function posts(): BelongsToMany { return $this->belongsToMany(Post::class, 'post_tags'); } protected static function boot() { parent::boot(); self::deleting(function (Tag $tag) { $tag->posts()->detach(); }); } }
[+]
..
[-] Category.php
[edit]
[-] Post.php
[edit]
[-] Tag.php
[edit]