'integer', 'categories_id' => 'integer', ]; } /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\User, $this> */ public function user(): BelongsTo { return $this->belongsTo(User::class, 'users_id'); } /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Category, $this> */ public function category(): BelongsTo { return $this->belongsTo(Category::class, 'categories_id'); } }