'integer', 'tags' => 'json', 'meta' => 'json', 'status' => 'integer' ]; public function user() { return $this->belongsTo(User::class, 'user_id'); } protected static function boot() { parent::boot(); static::creating(function ($blog) { $blog->slug = Str::slug($blog->title); }); } }