<?php declare(strict_types=1); namespace App\Model; use App\Model\RoleUser; use Hyperf\DbConnection\Model\Model; /** */ class Role extends Model { /** * The table associated with the model. */ protected ?string $table = 'role'; /** * The attributes that are mass assignable. */ protected array $fillable = []; /** * The attributes that should be cast to native types. */ protected array $casts = []; public function users() { return $this->hasMany(RoleUser::class); } }