$scopes * @property bool $revoked * @property Carbon|null $created_at * @property Carbon|null $updated_at * @property Carbon|null $expires_at */ class Token extends PassportToken { /** @use HasFactory */ use HasFactory; /** * Get the client that the token belongs to. * * @return BelongsTo */ public function client(): BelongsTo { return $this->belongsTo(Client::class, 'client_id', 'id'); } }